1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
|
// Copyright (c) 2004-2008 MySQL AB, 2008-2009 Sun Microsystems, Inc.
//
// MySQL Connector/NET is licensed under the terms of the GPLv2
// <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
// MySQL Connectors. There are special exceptions to the terms and
// conditions of the GPLv2 as it is applied to this software, see the
// FLOSS License Exception
// <http://www.mysql.com/about/legal/licensing/foss-exception.html>.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published
// by the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#if !MONO && !PocketPC
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Collections;
using System.IO;
using Microsoft.Win32;
using System.Xml;
using System.Reflection;
using System.Security.Permissions;
namespace MySql.Web.Security
{
[RunInstaller(true)]
[PermissionSetAttribute(SecurityAction.InheritanceDemand, Name = "FullTrust")]
[PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")]
public class CustomInstaller : Installer
{
/// <summary>
/// When overridden in a derived class, performs the installation.
/// </summary>
/// <param name="stateSaver">An <see cref="T:System.Collections.IDictionary"/> used to save information needed to perform a commit, rollback, or uninstall operation.</param>
/// <exception cref="T:System.ArgumentException">
/// The <paramref name="stateSaver"/> parameter is null.
/// </exception>
/// <exception cref="T:System.Exception">
/// An exception occurred in the <see cref="E:System.Configuration.Install.Installer.BeforeInstall"/> event handler of one of the installers in the collection.
/// -or-
/// An exception occurred in the <see cref="E:System.Configuration.Install.Installer.AfterInstall"/> event handler of one of the installers in the collection.
/// </exception>
public override void Install(IDictionary stateSaver)
{
base.Install(stateSaver);
AddProviderToMachineConfig();
}
/// <summary>
/// When overridden in a derived class, removes an installation.
/// </summary>
/// <param name="savedState">An <see cref="T:System.Collections.IDictionary"/> that contains the state of the computer after the installation was complete.</param>
/// <exception cref="T:System.ArgumentException">
/// The saved-state <see cref="T:System.Collections.IDictionary"/> might have been corrupted.
/// </exception>
/// <exception cref="T:System.Configuration.Install.InstallException">
/// An exception occurred while uninstalling. This exception is ignored and the uninstall continues. However, the application might not be fully uninstalled after the uninstallation completes.
/// </exception>
public override void Uninstall(IDictionary savedState)
{
base.Uninstall(savedState);
RemoveProviderFromMachineConfig();
}
private void AddProviderToMachineConfig()
{
object installRoot = Registry.GetValue(
@"HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\",
"InstallRoot", null);
if (installRoot == null)
throw new Exception("Unable to retrieve install root for .NET framework");
UpdateMachineConfigs(installRoot.ToString(), true);
string installRoot64 = installRoot.ToString();
installRoot64 = installRoot64.Substring(0, installRoot64.Length - 1);
installRoot64 = string.Format("{0}64{1}", installRoot64,
Path.DirectorySeparatorChar);
if (Directory.Exists(installRoot64))
UpdateMachineConfigs(installRoot64, true);
}
private void UpdateMachineConfigs(string rootPath, bool add)
{
string[] dirs = new string[2] { "v2.0.50727", "v4.0.30319" };
foreach (string frameworkDir in dirs)
{
string path = rootPath + frameworkDir;
string configPath = String.Format(@"{0}\CONFIG", path);
if (Directory.Exists(configPath))
{
if (add)
AddProviderToMachineConfigInDir(configPath);
else
RemoveProviderFromMachineConfigInDir(configPath);
}
}
}
private void AddProviderToMachineConfigInDir(string path)
{
string configFile = String.Format(@"{0}\machine.config", path);
if (!File.Exists(configFile)) return;
// now read the config file into memory
StreamReader sr = new StreamReader(configFile);
string configXML = sr.ReadToEnd();
sr.Close();
// load the XML into the XmlDocument
XmlDocument doc = new XmlDocument();
doc.LoadXml(configXML);
AddDefaultConnectionString(doc);
AddMembershipProvider(doc);
AddRoleProvider(doc);
AddProfileProvider(doc);
// Save the document to a file and auto-indent the output.
XmlTextWriter writer = new XmlTextWriter(configFile, null);
writer.Formatting = Formatting.Indented;
doc.Save(writer);
writer.Flush();
writer.Close();
}
private void AddDefaultConnectionString(XmlDocument doc)
{
// create our new node
XmlElement newNode = (XmlElement)doc.CreateNode(XmlNodeType.Element, "add", "");
// add the proper attributes
newNode.SetAttribute("name", "LocalMySqlServer");
newNode.SetAttribute("connectionString", "");
XmlNodeList nodes = doc.GetElementsByTagName("connectionStrings");
XmlNode connectionStringList = nodes[0];
bool alreadyThere = false;
foreach (XmlNode node in connectionStringList.ChildNodes)
{
string nameValue = node.Attributes["name"].Value;
if (nameValue == "LocalMySqlServer")
{
alreadyThere = true;
break;
}
}
if (!alreadyThere)
connectionStringList.AppendChild(newNode);
}
private void AddMembershipProvider(XmlDocument doc)
{
// create our new node
XmlElement newNode = (XmlElement)doc.CreateNode(XmlNodeType.Element, "add", "");
// add the proper attributes
newNode.SetAttribute("name", "MySQLMembershipProvider");
// add the type attribute by reflecting on the executing assembly
Assembly a = Assembly.GetExecutingAssembly();
string type = String.Format("MySql.Web.Security.MySQLMembershipProvider, {0}",
a.FullName.Replace("Installers", "Web"));
newNode.SetAttribute("type", type);
newNode.SetAttribute("connectionStringName", "LocalMySqlServer");
newNode.SetAttribute("enablePasswordRetrieval", "false");
newNode.SetAttribute("enablePasswordReset", "true");
newNode.SetAttribute("requiresQuestionAndAnswer", "true");
newNode.SetAttribute("applicationName", "/");
newNode.SetAttribute("requiresUniqueEmail", "false");
newNode.SetAttribute("passwordFormat", "Clear");
newNode.SetAttribute("maxInvalidPasswordAttempts", "5");
newNode.SetAttribute("minRequiredPasswordLength", "7");
newNode.SetAttribute("minRequiredNonalphanumericCharacters", "1");
newNode.SetAttribute("passwordAttemptWindow", "10");
newNode.SetAttribute("passwordStrengthRegularExpression", "");
XmlNodeList nodes = doc.GetElementsByTagName("membership");
XmlNode providerList = nodes[0].FirstChild;
foreach (XmlNode node in providerList.ChildNodes)
{
string typeValue = node.Attributes["type"].Value;
if (typeValue.StartsWith("MySql.Web.Security.MySQLMembershipProvider"))
{
providerList.RemoveChild(node);
break;
}
}
providerList.AppendChild(newNode);
}
private void AddRoleProvider(XmlDocument doc)
{
// create our new node
XmlElement newNode = (XmlElement)doc.CreateNode(XmlNodeType.Element, "add", "");
// add the proper attributes
newNode.SetAttribute("name", "MySQLRoleProvider");
// add the type attribute by reflecting on the executing assembly
Assembly a = Assembly.GetExecutingAssembly();
string type = String.Format("MySql.Web.Security.MySQLRoleProvider, {0}",
a.FullName.Replace("Installers", "Web"));
newNode.SetAttribute("type", type);
newNode.SetAttribute("connectionStringName", "LocalMySqlServer");
newNode.SetAttribute("applicationName", "/");
XmlNodeList nodes = doc.GetElementsByTagName("roleManager");
XmlNode providerList = nodes[0].FirstChild;
foreach (XmlNode node in providerList.ChildNodes)
{
string typeValue = node.Attributes["type"].Value;
if (typeValue.StartsWith("MySql.Web.Security.MySQLRoleProvider"))
{
providerList.RemoveChild(node);
break;
}
}
providerList.AppendChild(newNode);
}
private void AddProfileProvider(XmlDocument doc)
{
// create our new node
XmlElement newNode = (XmlElement)doc.CreateNode(XmlNodeType.Element, "add", "");
// add the proper attributes
newNode.SetAttribute("name", "MySQLProfileProvider");
// add the type attribute by reflecting on the executing assembly
Assembly a = Assembly.GetExecutingAssembly();
string type = String.Format("MySql.Web.Profile.MySQLProfileProvider, {0}",
a.FullName.Replace("Installers", "Web"));
newNode.SetAttribute("type", type);
newNode.SetAttribute("connectionStringName", "LocalMySqlServer");
newNode.SetAttribute("applicationName", "/");
XmlNodeList nodes = doc.GetElementsByTagName("profile");
XmlNode providerList = nodes[0].FirstChild;
foreach (XmlNode node in providerList.ChildNodes)
{
string typeValue = node.Attributes["type"].Value;
if (typeValue.StartsWith("MySql.Web.Profile.MySQLProfileProvider"))
{
providerList.RemoveChild(node);
break;
}
}
providerList.AppendChild(newNode);
}
private void RemoveProviderFromMachineConfig()
{
object installRoot = Registry.GetValue(
@"HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\",
"InstallRoot", null);
if (installRoot == null)
throw new Exception("Unable to retrieve install root for .NET framework");
UpdateMachineConfigs(installRoot.ToString(), false);
string installRoot64 = installRoot.ToString();
installRoot64 = installRoot64.Substring(0, installRoot64.Length - 1);
installRoot64 = string.Format("{0}64{1}", installRoot64,
Path.DirectorySeparatorChar);
if (Directory.Exists(installRoot64))
UpdateMachineConfigs(installRoot64, false);
}
private void RemoveProviderFromMachineConfigInDir(string path)
{
string configFile = String.Format(@"{0}\machine.config", path);
if (!File.Exists(configFile)) return;
// now read the config file into memory
StreamReader sr = new StreamReader(configFile);
string configXML = sr.ReadToEnd();
sr.Close();
// load the XML into the XmlDocument
XmlDocument doc = new XmlDocument();
doc.LoadXml(configXML);
RemoveDefaultConnectionString(doc);
RemoveMembershipProvider(doc);
RemoveRoleProvider(doc);
RemoveProfileProvider(doc);
// Save the document to a file and auto-indent the output.
XmlTextWriter writer = new XmlTextWriter(configFile, null);
writer.Formatting = Formatting.Indented;
doc.Save(writer);
writer.Flush();
writer.Close();
}
private void RemoveDefaultConnectionString(XmlDocument doc)
{
XmlNodeList nodes = doc.GetElementsByTagName("connectionStrings");
XmlNode connectionStringList = nodes[0];
foreach (XmlNode node in connectionStringList.ChildNodes)
{
string name = node.Attributes["name"].Value;
if (name == "LocalMySqlServer")
{
connectionStringList.RemoveChild(node);
break;
}
}
}
private void RemoveMembershipProvider(XmlDocument doc)
{
XmlNodeList nodes = doc.GetElementsByTagName("membership");
XmlNode providersNode = nodes[0].FirstChild;
foreach (XmlNode node in providersNode.ChildNodes)
{
string name = node.Attributes["name"].Value;
if (name == "MySQLMembershipProvider")
{
providersNode.RemoveChild(node);
break;
}
}
}
private void RemoveRoleProvider(XmlDocument doc)
{
XmlNodeList nodes = doc.GetElementsByTagName("roleManager");
XmlNode providersNode = nodes[0].FirstChild;
foreach (XmlNode node in providersNode.ChildNodes)
{
string name = node.Attributes["name"].Value;
if (name == "MySQLRoleProvider")
{
providersNode.RemoveChild(node);
break;
}
}
}
private void RemoveProfileProvider(XmlDocument doc)
{
XmlNodeList nodes = doc.GetElementsByTagName("profile");
XmlNode providersNode = nodes[0].FirstChild;
foreach (XmlNode node in providersNode.ChildNodes)
{
string name = node.Attributes["name"].Value;
if (name == "MySQLProfileProvider")
{
providersNode.RemoveChild(node);
break;
}
}
}
}
}
#endif
|