Beispiel #1
0
        public async Task <IEnumerable <(UInt64, UInt64)> > GetSubscriptionsAsync(SourceBooru booru)
        {
            var subscriptionKey = $"booruSubscriptions:{booru.Identifier}";

            var members = await this._db.Database.SetMembersAsync(subscriptionKey);

            var idPairs = members.Select(p => p.ToString());

            var ids = new List <(UInt64, UInt64)>();

            foreach (var pair in idPairs)
            {
                var split = pair.Split(',', StringSplitOptions.RemoveEmptyEntries);
                if (split.Length != 2)
                {
                    continue;
                }

                var guildId   = UInt64.Parse(split[0]);
                var channelId = UInt64.Parse(split[1]);

                ids.Add((guildId, channelId));
            }

            return(ids);
        }
Beispiel #2
0
        public async Task <UInt64> GetLastSubscriptionId(SourceBooru booru)
        {
            var lastIdKey = $"booruSubscriptions:{booru.Identifier}:lastId";

            var lastId = await this._db.Database.StringGetAsync(lastIdKey);

            return((UInt64)lastId);
        }
Beispiel #3
0
        public async Task UpdateLastSearchAsync(String tags, UInt64 userId, UInt64 guildId, UInt64 channelId,
                                                SourceBooru booru)
        {
            var tagKey     = $"booruSearches:{guildId}:{channelId}:{userId}:{booru.Identifier}:tags";
            var historyKey = $"booruSearches:{guildId}:{channelId}:{userId}:{booru.Identifier}:history";

            await this._db.AddAsync(tagKey, tags);

            await this._db.Database.KeyDeleteAsync(historyKey);
        }
Beispiel #4
0
        public async Task UpdatePostHistoryAsync(String tags, SocketUser user, SocketGuild guild,
                                                 ISocketMessageChannel channel, SourceBooru booru, Int64 newVal)
        {
            var tagKey     = $"booruSearches:{guild.Id}:{channel.Id}:{user.Id}:{booru.Identifier}:tags";
            var historyKey = $"booruSearches:{guild.Id}:{channel.Id}:{user.Id}:{booru.Identifier}:history";

            var existingTags = await this._db.GetAsync <String>(tagKey);

            if (!String.Equals(existingTags, tags, StringComparison.InvariantCultureIgnoreCase))
            {
                return;
            }

            await this._db.Database.SetAddAsync(historyKey, newVal);
        }
Beispiel #5
0
        private KuuhakuEmbedBuilder CreatePostEmbed(Post post, SourceBooru sauce)
        {
            var embed = new KuuhakuEmbedBuilder()
                        .WithColor()
                        .WithAuthor($"Id - {post.Id}", $"{sauce.BaseUri}favicon.ico",
                                    $"{sauce.BaseUri}{this.PostUrl(sauce.Identifier)}{post.Id}")
                        .WithTimestamp(post.UploadedAt)
                        .WithFooter(this.Context);

            var preview  = $"{post.Files.Preview}";
            var original = $"{post.Files.Original}";

            var fileSizeValue = "";

            try
            {
                var fileSizeAsInt = (Int32)post.Files.FileSize;
                fileSizeValue = fileSizeAsInt.Bytes().ToString("0.##");
            }
            catch
            {
                fileSizeValue = "Too big to count!";
            }

            return(embed
                   .WithField("Hash", post.Hash)
                   .WithField("Size", fileSizeValue)
                   .WithFieldIf("Download", () => $"[Full Image]({original})", includeIf: original != preview)
                   .WithFieldIf("Source", () => post.Source.Href.IsEmpty()
                        ? post.Source.FriendlyName
                        : $"[{post.Source.FriendlyName}]({post.Source.Href})",
                                includeIf: post.Source != null)
                   .WithField("Rating", post.Rating.ToString())
                   .AddField(this.CreateTagsField(post.Tags, sauce))
                   .WithImageUrl(preview));
        }
Beispiel #6
0
        public async Task <ImmutableArray <Int64> > GetViewedHistoryAsync(String tags, SocketUser user, SocketGuild guild, ISocketMessageChannel channel, SourceBooru booru)
        {
            var tagKey     = $"booruSearches:{guild.Id}:{channel.Id}:{user.Id}:{booru.Identifier}:tags";
            var historyKey = $"booruSearches:{guild.Id}:{channel.Id}:{user.Id}:{booru.Identifier}:history";

            var existingTags = await this._db.GetAsync <String>(tagKey);

            if (!String.Equals(existingTags, tags, StringComparison.InvariantCultureIgnoreCase))
            {
                return(ImmutableArray <Int64> .Empty);
            }

            var history = await this._db.Database.SetMembersAsync(historyKey);

            return(history.Select(v => !v.IsInteger ? (Int64)v : -1).ToImmutableArray());
        }
Beispiel #7
0
        public Task SetLastSubscriptionId(SourceBooru booru, UInt64 id)
        {
            var lastIdKey = $"booruSubscriptions:{booru.Identifier}:lastId";

            return(this._db.Database.StringSetAsync(lastIdKey, id));
        }
Beispiel #8
0
        public Task UnsubscribeAsync(SourceBooru booru, IGuild guild, IChannel channel)
        {
            var subscriptionKey = $"booruSubscriptions:{booru.Identifier}";

            return(this._db.Database.SetRemoveAsync(subscriptionKey, $"{guild.Id},{channel.Id}"));
        }
Beispiel #9
0
        public Task <Boolean> IsSubscribedAsync(SourceBooru booru, SocketGuild guild, IChannel channel)
        {
            var subscriptionKey = $"booruSubscriptions:{booru.Identifier}";

            return(this._db.Database.SetContainsAsync(subscriptionKey, $"{guild.Id},{channel.Id}"));
        }
Beispiel #10
0
 public Moebooru(IMoebooruApi api, SourceBooru sourceBooru, IDistributedCache cache)
 {
     this._api         = api;
     this._sourceBooru = sourceBooru;
     this._cache       = cache;
 }
Beispiel #11
0
 static Danbooru()
 {
     _sourceBooru = new SourceBooru("danbooru", "Danbooru", new Uri("https://danbooru.donmai.us/"));
 }