public async Task <QueryResult <IDictionary <string, object> > > QueryAppConfigDynamic(
            AppConfigQueryProjection projection,
            AppConfigQueryOptions options,
            AppConfigQueryFilter filter = null,
            AppConfigQuerySort sort     = null,
            AppConfigQueryPaging paging = null)
        {
            var query = AppConfigs;

            #region General
            if (filter != null)
            {
                query = query.Filter(filter);
            }
            query = query.Project(projection);
            int?totalCount = null;
            if (options.count_total)
            {
                totalCount = query.Count();
            }
            #endregion
            if (!options.single_only)
            {
                #region List query
                if (sort != null)
                {
                    query = query.Sort(sort);
                }
                if (paging != null && (!options.load_all || !AppConfigQueryOptions.IsLoadAllAllowed))
                {
                    query = query.SelectPage(paging.page, paging.limit);
                }
                #endregion
            }

            if (options.single_only)
            {
                var single = query.SingleOrDefault();
                if (single == null)
                {
                    return(null);
                }
                var singleResult = GetAppConfigDynamic(single, projection, options);
                return(new QueryResult <IDictionary <string, object> >()
                {
                    Single = singleResult
                });
            }
            var entities = query.ToList();
            var list     = GetAppConfigDynamic(entities, projection, options);
            var result   = new QueryResult <IDictionary <string, object> >();
            result.List = list;
            if (options.count_total)
            {
                result.Count = totalCount;
            }
            return(result);
        }
 public ValidationData ValidateGetAppConfigs(
     ClaimsPrincipal principal,
     AppConfigQueryFilter filter,
     AppConfigQuerySort sort,
     AppConfigQueryProjection projection,
     AppConfigQueryPaging paging,
     AppConfigQueryOptions options)
 {
     return(new ValidationData());
 }
        public List <IDictionary <string, object> > GetAppConfigDynamic(
            IEnumerable <AppConfig> rows, AppConfigQueryProjection projection,
            AppConfigQueryOptions options)
        {
            var list = new List <IDictionary <string, object> >();

            foreach (var o in rows)
            {
                var obj = GetAppConfigDynamic(o, projection, options);
                list.Add(obj);
            }
            return(list);
        }
Example #4
0
 public static IQueryable <AppConfig> Project(
     this IQueryable <AppConfig> query, AppConfigQueryProjection projection)
 {
     foreach (var f in projection.GetFieldsArr())
     {
         if (AppConfigQueryProjection.MAPS.ContainsKey(f))
         {
             foreach (var prop in AppConfigQueryProjection.MAPS[f])
             {
                 query = query.Include(prop);
             }
         }
     }
     return(query);
 }
        public IDictionary <string, object> GetAppConfigDynamic(
            AppConfig row, AppConfigQueryProjection projection,
            AppConfigQueryOptions options)
        {
            var obj = new Dictionary <string, object>();

            foreach (var f in projection.GetFieldsArr())
            {
                switch (f)
                {
                case AppConfigQueryProjection.INFO:
                {
                    var entity = row;
                    obj["id"]         = entity.Id;
                    obj["name"]       = entity.Name;
                    obj["client_id"]  = entity.ClientId;
                    obj["is_default"] = entity.IsDefault;
                    var time = entity.CreatedTime
                               .ToDefaultTimeZone();
                    var timeStr = time.ToString(options.date_format);
                    obj["created_time"] = new
                    {
                        display = timeStr,
                        iso     = $"{time.ToUniversalTime():s}Z"
                    };
                    time = entity.LastUpdated
                           .ToDefaultTimeZone();
                    timeStr             = time.ToString(options.date_format);
                    obj["last_updated"] = new
                    {
                        display = timeStr,
                        iso     = $"{time.ToUniversalTime():s}Z"
                    };
                }
                break;

                case AppConfigQueryProjection.SELECT:
                {
                    var entity = row;
                    obj["id"]         = entity.Id;
                    obj["name"]       = entity.Name;
                    obj["is_default"] = entity.IsDefault;
                }
                break;
                }
            }
            return(obj);
        }
Example #6
0
        public async Task <IActionResult> Get([FromQuery][QueryObject] AppConfigQueryFilter filter,
                                              [FromQuery] AppConfigQuerySort sort,
                                              [FromQuery] AppConfigQueryProjection projection,
                                              [FromQuery] AppConfigQueryPaging paging,
                                              [FromQuery] AppConfigQueryOptions options)
        {
            var validationData = _service.ValidateGetAppConfigs(
                User, filter, sort, projection, paging, options);

            if (!validationData.IsValid)
            {
                return(BadRequest(AppResult.FailValidation(data: validationData)));
            }
            var result = await _service.QueryAppConfigDynamic(
                projection, options, filter, sort, paging);

            if (options.single_only && result == null)
            {
                return(NotFound(AppResult.NotFound()));
            }
            return(Ok(AppResult.Success(result)));
        }