Massive cleanup

- Removed GuildConfigs repository, moved to extensions
- Moved StreamSettings extension to GuildConfig extensions
- namespace NadekoBot.Core has been simplified to NadekoBot in many places (more to come)
- Replaced some raw delete queries with simple linqtodb queries
This commit is contained in:
Kwoth
2021-06-19 03:32:48 +02:00
parent c7ff982ec1
commit 15dac7e3ed
191 changed files with 563 additions and 571 deletions

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class BibleVerses
{

View File

@@ -1,7 +1,7 @@
using Newtonsoft.Json;
using System.Collections.Generic;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class CryptoResponse
{

View File

@@ -1,6 +1,6 @@
using System;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public sealed class Tag
{

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Newtonsoft.Json;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class UserData
{

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class UserStats
{

View File

@@ -1,4 +1,4 @@
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class HearthstoneCardData
{

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class MtgData
{

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Newtonsoft.Json;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public static class NhentaiApiModel
{

View File

@@ -1,4 +1,4 @@
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class OmdbMovie
{

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class OsuUserData
{

View File

@@ -1,7 +1,7 @@
using Newtonsoft.Json;
using System;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class Account

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic;
using Newtonsoft.Json;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class PicartoChannelResponse
{

View File

@@ -1,6 +1,7 @@
using NadekoBot.Core.Services.Database.Models;
using NadekoBot.Services.Database.Models;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class StreamData
{

View File

@@ -1,6 +1,7 @@
using NadekoBot.Core.Services.Database.Models;
using NadekoBot.Services.Database.Models;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public readonly struct StreamDataKey
{

View File

@@ -1,4 +1,4 @@
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
//
// public class TwitchResponse

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic;
using Newtonsoft.Json;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class TwitchResponseV5
{

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Newtonsoft.Json;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class TwitchUsersResponseV5
{

View File

@@ -3,14 +3,15 @@ using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using NadekoBot.Core.Modules.Searches.Common.StreamNotifications.Providers;
using NadekoBot.Modules.Searches.Common.StreamNotifications.Providers;
using NadekoBot.Core.Services.Database.Models;
using NadekoBot.Services.Database.Models;
using Newtonsoft.Json;
using Serilog;
using StackExchange.Redis;
#nullable enable
namespace NadekoBot.Core.Modules.Searches.Common.StreamNotifications
namespace NadekoBot.Modules.Searches.Common.StreamNotifications
{
public class NotifChecker
{

View File

@@ -6,11 +6,12 @@ using System.Net.Http.Headers;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using NadekoBot.Core.Services.Database.Models;
using NadekoBot.Services.Database.Models;
using Newtonsoft.Json;
using Serilog;
#nullable enable
namespace NadekoBot.Core.Modules.Searches.Common.StreamNotifications.Providers
namespace NadekoBot.Modules.Searches.Common.StreamNotifications.Providers
{
public class PicartoProvider : Provider
{

View File

@@ -4,9 +4,10 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using NadekoBot.Core.Services.Database.Models;
using NadekoBot.Services.Database.Models;
#nullable enable
namespace NadekoBot.Core.Modules.Searches.Common.StreamNotifications.Providers
namespace NadekoBot.Modules.Searches.Common.StreamNotifications.Providers
{
/// <summary>
/// Abstract class implemented by providers of all supported platforms

View File

@@ -11,7 +11,7 @@
// using Serilog;
// using JsonSerializer = System.Text.Json.JsonSerializer;
//
// namespace NadekoBot.Core.Modules.Searches.Common.StreamNotifications.Providers
// namespace NadekoBot.Modules.Searches.Common.StreamNotifications.Providers
// {
// public sealed class TwitchHelixProvider : Provider
// {

View File

@@ -5,11 +5,12 @@ using System.Net.Http;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using NadekoBot.Core.Services.Database.Models;
using NadekoBot.Services.Database.Models;
using Newtonsoft.Json;
using Serilog;
#nullable enable
namespace NadekoBot.Core.Modules.Searches.Common.StreamNotifications.Providers
namespace NadekoBot.Modules.Searches.Common.StreamNotifications.Providers
{
public class TwitchProvider : Provider
{

View File

@@ -1,6 +1,6 @@
using System;
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class TimeData
{

View File

@@ -1,4 +1,4 @@
namespace NadekoBot.Core.Modules.Searches.Common
namespace NadekoBot.Modules.Searches.Common
{
public class UrbanResponse
{