mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
26 lines
914 B
C#
26 lines
914 B
C#
|
using System.Configuration;
|
|||
|
|
|||
|
namespace MongoAuth
|
|||
|
{
|
|||
|
internal static class DatabaseConfig
|
|||
|
{
|
|||
|
public static string Host { get; private set; }
|
|||
|
public static int Port { get; private set; }
|
|||
|
public static string Database { get; private set; }
|
|||
|
|
|||
|
static DatabaseConfig()
|
|||
|
{
|
|||
|
Host = !string.IsNullOrEmpty(ConfigurationManager.AppSettings["data:MongoHost"]) ? ConfigurationManager.AppSettings["data:MongoHost"] : "localhost";
|
|||
|
|
|||
|
int _port;
|
|||
|
bool success = int.TryParse(ConfigurationManager.AppSettings["data:MongoPort"], out _port);
|
|||
|
if (!success)
|
|||
|
{
|
|||
|
_port = 27017; // mongo default port
|
|||
|
}
|
|||
|
Port = _port;
|
|||
|
|
|||
|
Database = !string.IsNullOrEmpty(ConfigurationManager.AppSettings["data:MongoDB"]) ? ConfigurationManager.AppSettings["data:MongoDB"] : "MongoAuth";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|