aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Data/Static/AppConfiguration.cs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-10-30 16:40:03 +0100
committerivarlovlie <git@ivarlovlie.no>2022-10-30 16:40:03 +0100
commit0725e4f7cf4c6f723264b6d461b91c660d144cb7 (patch)
treeaae5876b5760c80679161d918c34d753ec0e2582 /code/api/src/Data/Static/AppConfiguration.cs
parentd76c180c9631df015d37138045c79a46cca350e8 (diff)
downloadgreatoffice-0725e4f7cf4c6f723264b6d461b91c660d144cb7.tar.xz
greatoffice-0725e4f7cf4c6f723264b6d461b91c660d144cb7.zip
feat: Apiwork
Diffstat (limited to 'code/api/src/Data/Static/AppConfiguration.cs')
-rw-r--r--code/api/src/Data/Static/AppConfiguration.cs58
1 files changed, 0 insertions, 58 deletions
diff --git a/code/api/src/Data/Static/AppConfiguration.cs b/code/api/src/Data/Static/AppConfiguration.cs
deleted file mode 100644
index 4ee7a8e..0000000
--- a/code/api/src/Data/Static/AppConfiguration.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-using System.Security.Cryptography.X509Certificates;
-
-namespace IOL.GreatOffice.Api.Data.Static;
-
-public class AppConfiguration
-{
- public string DB_HOST { get; set; }
- public string DB_PORT { get; set; }
- public string DB_USER { get; set; }
- public string DB_PASSWORD { get; set; }
- public string DB_NAME { get; set; }
- public string QUARTZ_DB_HOST { get; set; }
- public string QUARTZ_DB_PORT { get; set; }
- public string QUARTZ_DB_USER { get; set; }
- public string QUARTZ_DB_PASSWORD { get; set; }
- public string QUARTZ_DB_NAME { get; set; }
- public string SEQ_API_KEY { get; set; }
- public string SEQ_API_URL { get; set; }
- public string SMTP_HOST { get; set; }
- public string SMTP_PORT { get; set; }
- public string SMTP_USER { get; set; }
- public string SMTP_PASSWORD { get; set; }
- public string EMAIL_FROM_ADDRESS { get; set; }
- public string EMAIL_FROM_DISPLAY_NAME { get; set; }
- public string PORTAL_URL { get; set; }
- public string GITHUB_CLIENT_ID { get; set; }
- public string GITHUB_CLIENT_SECRET { get; set; }
- public string APP_AES_KEY { get; set; }
- public string APP_CERT { get; set; }
-
- public X509Certificate2 CERT1() => new (Convert.FromBase64String(APP_CERT));
-
- public object GetPublicVersion() {
- return new {
- DB_HOST,
- DB_PORT,
- DB_USER,
- DB_PASSWORD = DB_PASSWORD.Obfuscate() ?? "",
- QUARTZ_DB_HOST,
- QUARTZ_DB_PORT,
- QUARTZ_DB_USER,
- QUARTZ_DB_PASSWORD = QUARTZ_DB_PASSWORD.Obfuscate() ?? "",
- SEQ_API_KEY = SEQ_API_KEY.Obfuscate() ?? "",
- SEQ_API_URL,
- SMTP_HOST,
- SMTP_PORT,
- SMTP_USER = SMTP_USER.Obfuscate() ?? "",
- SMTP_PASSWORD = SMTP_PASSWORD.Obfuscate() ?? "",
- EMAIL_FROM_ADDRESS,
- EMAIL_FROM_DISPLAY_NAME,
- PORTAL_URL,
- GITHUB_CLIENT_ID = GITHUB_CLIENT_ID.Obfuscate() ?? "",
- GITHUB_CLIENT_SECRET = GITHUB_CLIENT_SECRET.Obfuscate() ?? "",
- APP_AES_KEY = APP_AES_KEY.Obfuscate() ?? "",
- CERT1 = CERT1().PublicKey.Oid.FriendlyName
- };
- }
-}