public ActionResult Index(string id)
        {
            if (id == null)
            {
                id = this.User.Identity.Name;
            }

            var profile = this.Data.Users.GetByUsername(id);

            if (profile == null)
            {
                throw new HttpException((int)HttpStatusCode.NotFound, "This user does not exist!");
            }

            var userSettingsViewModel = new UserProfileViewModel(profile);
            userSettingsViewModel.Participations =
                this.Data.Participants.All()
                .Where(x => x.UserId == profile.Id)
                .Select(p => new UserParticipationViewModel
                {
                    ContestId = p.ContestId,
                    ContestName = p.Contest.Name,
                    IsOfficial = p.IsOfficial,
                    ContestResult = p.Submissions.GroupBy(s => s.ProblemId).Sum(x => x.Max(z => z.Points))
                });

            return this.View(userSettingsViewModel);
        }
예제 #2
0
        public ActionResult Index(string id)
        {
            if (string.IsNullOrEmpty(id))
            {
                id = this.User.Identity.Name;
            }

            var profile = this.Data.Users.GetByUsername(id);

            if (profile == null)
            {
                throw new HttpException((int)HttpStatusCode.NotFound, Resource.ProfileIndex.Not_found);
            }

            var userSettingsViewModel = new UserProfileViewModel(profile)
            {
                Participations = this.Data.Participants.All()
                    .Where(x => x.UserId == profile.Id)
                    .GroupBy(x => x.Contest)
                    .Select(c => new UserParticipationViewModel
                    {
                        ContestId = c.Key.Id,
                        ContestName = c.Key.Name,
                        RegistrationTime = c.Key.CreatedOn,
                        ContestMaximumPoints = c.Key.Problems.Where(x => !x.IsDeleted).Sum(pr => pr.MaximumPoints),
                        CompeteResult = c.Where(x => x.IsOfficial)
                            .Select(p => p.Submissions
                                .Where(x => !x.IsDeleted)
                                .GroupBy(s => s.ProblemId)
                                .Sum(x => x.Max(z => z.Points)))
                            .FirstOrDefault(),
                        PracticeResult = c.Where(x => !x.IsOfficial)
                            .Select(p => p.Submissions
                                .Where(x => !x.IsDeleted)
                                .GroupBy(s => s.ProblemId)
                                .Sum(x => x.Max(z => z.Points)))
                            .FirstOrDefault()
                    })
                    .OrderByDescending(x => x.RegistrationTime)
                    .ToList()
            };

            return this.View(userSettingsViewModel);
        }