mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
- Credentials are now loading from creds.yml
- Removed/commented out obsolete credentials code - Added missing properties to creds.yml - Updated README.md with some tasks and progress
This commit is contained in:
@@ -1,86 +1,120 @@
|
||||
using System.Collections.Generic;
|
||||
using NadekoBot.Common.Yml;
|
||||
|
||||
using NadekoBot.Services;
|
||||
using YamlDotNet.Serialization;
|
||||
|
||||
namespace Nadeko.Common
|
||||
{
|
||||
public sealed record Creds
|
||||
public sealed class Creds : IBotCredentials
|
||||
{
|
||||
public Creds()
|
||||
{
|
||||
Token = string.Empty;
|
||||
OwnerIds = new()
|
||||
{
|
||||
105635576866156544
|
||||
};
|
||||
OwnerIds = new();
|
||||
TotalShards = 1;
|
||||
GoogleApiKey = string.Empty;
|
||||
Votes = new(string.Empty, string.Empty);
|
||||
Patreon = new(string.Empty, string.Empty, string.Empty, string.Empty);
|
||||
BotListToken = string.Empty;
|
||||
CleverbotApiKey = string.Empty;
|
||||
RedisOptions = "redis:6379,syncTimeout=30000,responseTimeout=30000,allowAdmin=true,password=";
|
||||
Db = new DbOptions();
|
||||
RedisOptions = "localhost:6379,syncTimeout=30000,responseTimeout=30000,allowAdmin=true,password=";
|
||||
Db = new()
|
||||
{
|
||||
Type = "sqlite",
|
||||
ConnectionString = "Data Source=data/NadekoBot.db"
|
||||
};
|
||||
Version = 1;
|
||||
}
|
||||
|
||||
[Comment(@"Bot token. Do not share with anyone ever -> https://discordapp.com/developers/applications/")]
|
||||
public string Token { get; }
|
||||
public string Token { get; set; }
|
||||
|
||||
[Comment(@"List of Ids of the users who have bot owner permissions
|
||||
**DO NOT ADD PEOPLE YOU DON'T TRUST**")]
|
||||
public HashSet<ulong> OwnerIds { get; }
|
||||
public List<ulong> OwnerIds { get; set; }
|
||||
|
||||
// todo update total shards on startup
|
||||
[Comment(@"The number of shards that the bot will running on.
|
||||
Leave at 1 if you don't know what you're doing.")]
|
||||
public int TotalShards { get; }
|
||||
public int TotalShards { get; set; }
|
||||
|
||||
[Comment(@"Login to https://console.cloud.google.com, create a new project, go to APIs & Services -> Library -> YouTube Data API and enable it.
|
||||
Then, go to APIs and Services -> Credentials and click Create credentials -> API key.
|
||||
Used only for Youtube Data Api (at the moment).")]
|
||||
public string GoogleApiKey { get; }
|
||||
public string GoogleApiKey { get; set; }
|
||||
|
||||
[Comment(@"Settings for voting system for discordbots. Meant for use on global Nadeko.")]
|
||||
public VotesSettings Votes { get; }
|
||||
public VotesSettings Votes { get; set; }
|
||||
|
||||
[Comment(@"Patreon auto reward system settings.
|
||||
go to https://www.patreon.com/portal -> my clients -> create client")]
|
||||
public PatreonSettings Patreon { get; }
|
||||
public PatreonSettings Patreon { get; set; }
|
||||
|
||||
[Comment(@"Api key for sending stats to DiscordBotList.")]
|
||||
public string BotListToken { get; }
|
||||
public string BotListToken { get; set; }
|
||||
|
||||
[Comment(@"Official cleverbot api key.")]
|
||||
public string CleverbotApiKey { get; }
|
||||
public string CleverbotApiKey { get; set; }
|
||||
|
||||
[Comment(@"Redis connection string. Don't change if you don't know what you're doing.")]
|
||||
public string RedisOptions { get; }
|
||||
public string RedisOptions { get; set; }
|
||||
|
||||
[Comment(@"Database options. Don't change if you don't know what you're doing. Leave null for default values")]
|
||||
public DbOptions Db { get; }
|
||||
public DbOptions Db { get; set; }
|
||||
|
||||
[Comment(@"DO NOT CHANGE")]
|
||||
public int Version { get; }
|
||||
public int Version { get; set; }
|
||||
|
||||
|
||||
public RestartConfig RestartCommand { get; set; }
|
||||
|
||||
[YamlIgnore]
|
||||
public string PatreonCampaignId => Patreon?.CampaignId;
|
||||
[YamlIgnore]
|
||||
public string PatreonAccessToken => Patreon?.AccessToken;
|
||||
|
||||
public string VotesUrl { get; set; }
|
||||
public string VotesToken { get; set; }
|
||||
|
||||
[Comment(@"Api key obtained on https://rapidapi.com (go to MyApps -> Add New App -> Enter Name -> Application key)")]
|
||||
public string RapidApiKey { get; set; }
|
||||
|
||||
[Comment(@"https://locationiq.com api key (register and you will receive the token in the email).
|
||||
Used only for .time command.")]
|
||||
public string LocationIqApiKey { get; set; }
|
||||
|
||||
[Comment(@"https://timezonedb.com api key (register and you will receive the token in the email).
|
||||
Used only for .time command")]
|
||||
public string TimezoneDbApiKey { get; set; }
|
||||
|
||||
[Comment(@"https://pro.coinmarketcap.com/account/ api key. There is a free plan for personal use.
|
||||
Used for cryptocurrency related commands.")]
|
||||
public string CoinmarketcapApiKey { get; set; }
|
||||
|
||||
[Comment(@"Api key used for Osu related commands. Obtain this key at https://osu.ppy.sh/p/api")]
|
||||
public string OsuApiKey { get; set; }
|
||||
|
||||
|
||||
public class DbOptions
|
||||
{
|
||||
[Comment(@"Database type. Only sqlite supported atm")]
|
||||
public string Type { get; } = "";
|
||||
public string Type { get; set; }
|
||||
[Comment(@"Connection string. Will default to ""Data Source=data/NadekoBot.db""")]
|
||||
public string ConnectionString { get; } = string.Empty;
|
||||
public string ConnectionString { get; set; }
|
||||
}
|
||||
|
||||
// todo fixup patreon
|
||||
public sealed record PatreonSettings
|
||||
{
|
||||
[Comment(@"")]
|
||||
public string AccessToken { get; }
|
||||
[Comment(@"")]
|
||||
public string RefreshToken { get; }
|
||||
[Comment(@"")]
|
||||
public string ClientSecret { get; }
|
||||
[Comment(@"Access token. You have to manually update this 1st of each month by refreshing the token on https://patreon.com/portal")]
|
||||
public string AccessToken { get; set; }
|
||||
[Comment(@"Unused atm")]
|
||||
public string RefreshToken { get; set; }
|
||||
[Comment(@"Unused atm")]
|
||||
public string ClientSecret { get; set; }
|
||||
|
||||
[Comment(@"Campaign ID of your patreon page. Go to your patreon page (make sure you're logged in) and type ""prompt('Campaign ID', window.patreon.bootstrap.creator.data.id);"" in the console. (ctrl + shift + i)")]
|
||||
public string CampaignId { get; }
|
||||
public string CampaignId { get; set; }
|
||||
|
||||
public PatreonSettings(string accessToken, string refreshToken, string clientSecret, string campaignId)
|
||||
{
|
||||
@@ -94,9 +128,9 @@ go to https://www.patreon.com/portal -> my clients -> create client")]
|
||||
public sealed record VotesSettings
|
||||
{
|
||||
[Comment(@"")]
|
||||
public string Url { get; }
|
||||
public string Url { get; set; }
|
||||
[Comment(@"")]
|
||||
public string Key { get; }
|
||||
public string Key { get; set; }
|
||||
|
||||
public VotesSettings(string url, string key)
|
||||
{
|
||||
@@ -107,31 +141,31 @@ go to https://www.patreon.com/portal -> my clients -> create client")]
|
||||
|
||||
public class Old
|
||||
{
|
||||
public string Token { get; } = string.Empty;
|
||||
public ulong[] OwnerIds { get; } = new ulong[1];
|
||||
public string LoLApiKey { get; } = string.Empty;
|
||||
public string GoogleApiKey { get; } = string.Empty;
|
||||
public string MashapeKey { get; } = string.Empty;
|
||||
public string OsuApiKey { get; } = string.Empty;
|
||||
public string SoundCloudClientId { get; } = string.Empty;
|
||||
public string CleverbotApiKey { get; } = string.Empty;
|
||||
public string CarbonKey { get; } = string.Empty;
|
||||
public int TotalShards { get; } = 1;
|
||||
public string PatreonAccessToken { get; } = string.Empty;
|
||||
public string PatreonCampaignId { get; } = "334038";
|
||||
public RestartConfig? RestartCommand { get; } = null;
|
||||
public string Token { get; set; } = string.Empty;
|
||||
public ulong[] OwnerIds { get; set; } = new ulong[1];
|
||||
public string LoLApiKey { get; set; } = string.Empty;
|
||||
public string GoogleApiKey { get; set; } = string.Empty;
|
||||
public string MashapeKey { get; set; } = string.Empty;
|
||||
public string OsuApiKey { get; set; } = string.Empty;
|
||||
public string SoundCloudClientId { get; set; } = string.Empty;
|
||||
public string CleverbotApiKey { get; set; } = string.Empty;
|
||||
public string CarbonKey { get; set; } = string.Empty;
|
||||
public int TotalShards { get; set; } = 1;
|
||||
public string PatreonAccessToken { get; set; } = string.Empty;
|
||||
public string PatreonCampaignId { get; set; } = "334038";
|
||||
public RestartConfig? RestartCommand { get; set; } = null;
|
||||
|
||||
public string ShardRunCommand { get; } = string.Empty;
|
||||
public string ShardRunArguments { get; } = string.Empty;
|
||||
public int? ShardRunPort { get; } = null;
|
||||
public string MiningProxyUrl { get; } = string.Empty;
|
||||
public string MiningProxyCreds { get; } = string.Empty;
|
||||
public string ShardRunCommand { get; set; } = string.Empty;
|
||||
public string ShardRunArguments { get; set; } = string.Empty;
|
||||
public int? ShardRunPort { get; set; } = null;
|
||||
public string MiningProxyUrl { get; set; } = string.Empty;
|
||||
public string MiningProxyCreds { get; set; } = string.Empty;
|
||||
|
||||
public string BotListToken { get; } = string.Empty;
|
||||
public string TwitchClientId { get; } = string.Empty;
|
||||
public string VotesToken { get; } = string.Empty;
|
||||
public string VotesUrl { get; } = string.Empty;
|
||||
public string RedisOptions { get; } = string.Empty;
|
||||
public string BotListToken { get; set; } = string.Empty;
|
||||
public string TwitchClientId { get; set; } = string.Empty;
|
||||
public string VotesToken { get; set; } = string.Empty;
|
||||
public string VotesUrl { get; set; } = string.Empty;
|
||||
public string RedisOptions { get; set; } = string.Empty;
|
||||
|
||||
public class RestartConfig
|
||||
{
|
||||
@@ -141,8 +175,8 @@ go to https://www.patreon.com/portal -> my clients -> create client")]
|
||||
this.Args = args;
|
||||
}
|
||||
|
||||
public string Cmd { get; }
|
||||
public string Args { get; }
|
||||
public string Cmd { get; set; }
|
||||
public string Args { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user