DocSpace-client/common/services/ASC.Data.Backup/Tasks/DbFactory.cs

148 lines
5.2 KiB
C#
Raw Normal View History

2020-05-20 15:14:44 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2020
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
using System;
using System.Configuration;
using System.Data;
using System.Data.Common;
2020-06-10 12:35:10 +00:00
2020-08-27 14:01:37 +00:00
using ASC.Common;
2020-06-10 12:35:10 +00:00
using ASC.Common.Utils;
2020-08-27 14:01:37 +00:00
using Microsoft.Extensions.Configuration;
2020-05-20 15:14:44 +00:00
using MySql.Data.MySqlClient;
namespace ASC.Data.Backup.Tasks
{
public class DbFactory
{
public const string DefaultConnectionStringName = "default";
private DbProviderFactory dbProviderFactory;
2020-06-10 12:35:10 +00:00
private IConfiguration Configuration { get; set; }
private string ConnectionString { get; set; }
private string Path { get; set; }
2020-05-20 15:14:44 +00:00
2020-08-27 14:01:37 +00:00
internal ConnectionStringSettings ConnectionStringSettings
{
get
{
2020-06-10 12:35:10 +00:00
if (string.IsNullOrEmpty(ConnectionString))
2020-05-20 15:14:44 +00:00
{
2020-08-27 14:01:37 +00:00
return ConfigurationExtension.GetConnectionStrings(Configuration, DefaultConnectionStringName);
2020-05-20 15:14:44 +00:00
}
2020-06-10 12:35:10 +00:00
else
{
return ConfigurationExtension.GetConnectionStrings(Configuration, ConnectionString);
}
2020-08-27 14:01:37 +00:00
}
}
2020-05-20 15:14:44 +00:00
private DbProviderFactory DbProviderFactory
{
get
{
if (dbProviderFactory == null)
{
2020-06-10 12:35:10 +00:00
var type = Type.GetType(Configuration["DbProviderFactories:mysql:type"], true);
2020-05-20 15:14:44 +00:00
dbProviderFactory = (DbProviderFactory)Activator.CreateInstance(type, true);
}
return dbProviderFactory;
}
}
2020-06-10 12:35:10 +00:00
public DbFactory(IConfiguration configuration)
2020-05-20 15:14:44 +00:00
{
2020-06-10 12:35:10 +00:00
Configuration = configuration;
2020-05-20 15:14:44 +00:00
}
2020-06-10 12:35:10 +00:00
public DbConnection OpenConnection(string path = "default", string connectionString = DefaultConnectionStringName)//TODO
2020-05-20 15:14:44 +00:00
{
2020-06-10 12:35:10 +00:00
ConnectionString = connectionString;
Path = path;
2020-05-20 15:14:44 +00:00
var connection = DbProviderFactory.CreateConnection();
if (connection != null)
{
connection.ConnectionString = EnsureConnectionTimeout(ConnectionStringSettings.ConnectionString);
connection.Open();
}
return connection;
}
public IDbDataAdapter CreateDataAdapter()
{
var result = DbProviderFactory.CreateDataAdapter();
if (result == null && DbProviderFactory is MySqlClientFactory)
{
result = new MySqlDataAdapter();
}
return result;
}
public DbCommand CreateLastInsertIdCommand()
{
var command = DbProviderFactory.CreateCommand();
if (command != null)
command.CommandText =
ConnectionStringSettings.ProviderName.IndexOf("MySql", StringComparison.OrdinalIgnoreCase) != -1
? "select Last_Insert_Id();"
: "select last_insert_rowid();";
return command;
}
public DbCommand CreateShowColumnsCommand(string tableName)
{
var command = DbProviderFactory.CreateCommand();
if (command != null)
{
command.CommandText = "show columns from " + tableName + ";";
}
return command;
}
2020-08-27 14:01:37 +00:00
2020-05-20 15:14:44 +00:00
private static string EnsureConnectionTimeout(string connectionString)
{
if (!connectionString.Contains("Connection Timeout"))
{
connectionString = connectionString.TrimEnd(';') + ";Connection Timeout=90";
}
return connectionString;
}
}
2020-06-10 12:35:10 +00:00
public static class DbFactoryExtension
{
public static DIHelper AddDbFactoryService(this DIHelper services)
{
services.TryAddScoped<DbFactory>();
return services;
}
}
2020-05-20 15:14:44 +00:00
}