コード例 #1
0
ファイル: NugetHistoryService.cs プロジェクト: lulzzz/sito
        public async Task <IGrouping <string, Package>[]> RetrieveAsync()
        {
            var packages = await PackageSearch.GetAsync("MatteoFabbri");

            var histories = packages.Data.Select(pack => new PackageHistory
            {
                DateTime = DateTime.Now,
                Package  = pack
            });

            foreach (var item in histories)
            {
                var dayStart = item.DateTime.Date;
                var dayEnd   = dayStart + TimeSpan.FromDays(1);

                var exists = await history.AnyAsync(x => x.Package.Id == item.Package.Id &&
                                                    x.DateTime >= dayStart &&
                                                    x.DateTime >= dayEnd &&
                                                    x.Package.TotalDownloads != item.Package.TotalDownloads);

                if (!exists)
                {
                    await history.InsertOneAsync(item);
                }
            }

            var es = packages
                     .Data
                     .Where(x => x.Authors.Length == 1 && x.Authors[0] == "Matteo Fabbri")
                     .GroupBy(x => x.Title.Split('.').First())
                     .OrderBy(x => x.Key)
                     .ToArray();

            return(es);
        }
コード例 #2
0
 public static Task <bool> AnyMuteAsync(this IMongoCollection <Mute> collection, ulong userId, ulong guildId)
 => collection.AnyAsync(x => x.UserId == userId && x.GuildId == guildId && x.Active);
コード例 #3
0
        public static Task <bool> AnyCustomCmdAsync(this IMongoCollection <CustomCmd> collection, string name, ulong guildId)
        {
            var lowerInput = name.ToLower();

            return(collection.AnyAsync(x => x.Name == lowerInput && x.GuildId == guildId));
        }