+ public function userView(Request $request, int $id, ?string $user): Response {
+ //Get user
+ if (empty($this->context['user'] = $this->doctrine->getRepository(User::class)->findOneByIdAsArray($id, $this->locale))) {
+ //Throw not found
+ throw new NotFoundHttpException($this->translator->trans('Unable to find user: %id%', ['%id%' => $id]));
+ }
+
+ //Create token
+ $token = new AnonymousToken('', $this->context['user']['mail'], $this->context['user']['roles']);
+
+ //Prevent access when not admin, user is not guest and not currently logged user
+ if (!($isAdmin = $this->checker->isGranted('ROLE_ADMIN')) && !($isGuest = $this->decision->decide($token, ['ROLE_GUEST']))) {
+ //Throw access denied
+ throw new AccessDeniedException($this->translator->trans('Unable to access user: %id%', ['%id%' => $id]));
+ }
+
+ //With invalid user slug
+ if ($this->context['user']['slug'] !== $user) {
+ //Redirect to cleaned url
+ return $this->redirectToRoute('rapsys_air_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
+ }
+
+ //Fetch calendar
+ $this->context['calendar'] = $this->doctrine->getRepository(Session::class)->findAllByPeriodAsCalendarArray($this->period, !$this->checker->isGranted('IS_AUTHENTICATED_REMEMBERED'), null, null, $id);
+
+ //Get locations at less than 2 km
+ $this->context['locations'] = $this->doctrine->getRepository(Location::class)->findAllByUserIdAsArray($id, $this->period, 2);
+
+ //Set ats
+ $ats = [];
+
+ //Set dances
+ $dances = [];
+
+ //Set indoors
+ $indoors = [];
+
+ //Set ins
+ $ins = [];
+
+ //Set insides
+ $insides = [];
+
+ //Set locations
+ $locations = [];
+
+ //Set types
+ $types = [];
+
+ //Iterate on each calendar
+ foreach($this->context['calendar'] as $date => $calendar) {
+ //Iterate on each session
+ foreach($calendar['sessions'] as $sessionId => $session) {
+ //Add dance
+ $dances[$session['application']['dance']['name']] = $session['application']['dance']['name'];
+
+ //Add types
+ $types[$session['application']['dance']['type']] = lcfirst($session['application']['dance']['type']);
+
+ //Add indoors
+ $indoors[$session['location']['indoor']?'indoor':'outdoor'] = $this->translator->trans($session['location']['indoor']?'indoor':'outdoor');
+
+ //Add insides
+ $insides[$session['location']['indoor']?'inside':'outside'] = $this->translator->trans($session['location']['indoor']?'inside':'outside');
+
+ //Add ats
+ $ats[$session['location']['id']] = $session['location']['at'];
+
+ //Add ins
+ $ins[$session['location']['id']] = $session['location']['in'];
+
+ //Session with application user id
+ if (!empty($session['application']['user']['id']) && $session['application']['user']['id'] == $id) {
+ //Add location
+ $locations[$session['location']['id']] = $session['location'];
+ }
+ }
+ }
+
+ //Set modified
+ //XXX: dance modified is already computed inside calendar modified
+ $this->modified = max(array_merge([$this->context['user']['modified']], array_map(function ($v) { return $v['modified']; }, array_merge($this->context['calendar'], $this->context['locations']))));
+
+ //Create response
+ $response = new Response();
+
+ //With logged user
+ if ($this->checker->isGranted('IS_AUTHENTICATED_REMEMBERED')) {
+ //Set last modified
+ $response->setLastModified(new \DateTime('-1 year'));
+
+ //Set as private
+ $response->setPrivate();
+ //Without logged user
+ } else {
+ //Set etag
+ //XXX: only for public to force revalidation by last modified
+ $response->setEtag(md5(serialize(array_merge($this->context['user'], $this->context['calendar'], $this->context['locations']))));
+
+ //Set last modified
+ $response->setLastModified($this->modified);
+
+ //Set as public
+ $response->setPublic();
+
+ //Without role and modification
+ if ($response->isNotModified($request)) {
+ //Return 304 response
+ return $response;
+ }
+ }
+
+ //Add multi map
+ $this->context['multimap'] = $this->map->getMultiMap($this->context['user']['multimap'], $this->modified->getTimestamp(), $this->context['locations']);
+
+ //Set keywords
+ $this->context['keywords'] = [
+ $this->context['user']['pseudonym'],
+ $this->translator->trans('calendar'),
+ $this->translator->trans('Libre Air')
+ ];
+
+ //Set cities
+ $cities = array_unique(array_map(function ($v) { return $v['city']; }, $locations));
+
+ //Set titles
+ $titles = array_map(function ($v) { return $v['title']; }, $locations);
+
+ //Insert dances in keywords
+ array_splice($this->context['keywords'], 1, 0, array_merge($types, $dances, $indoors, $insides, $titles, $cities));
+
+ //Deduplicate ins
+ $ins = array_unique($ins);
+
+ //Get textual dances
+ $dances = implode($this->translator->trans(' and '), array_filter(array_merge([implode(', ', array_slice($dances, 0, -1))], array_slice($dances, -1)), 'strlen'));
+
+ //Get textual types
+ $types = implode($this->translator->trans(' and '), array_filter(array_merge([implode(', ', array_slice($types, 0, -1))], array_slice($types, -1)), 'strlen'));
+
+ //Get textual indoors
+ $indoors = implode($this->translator->trans(' and '), array_filter(array_merge([implode(', ', array_slice($indoors, 0, -1))], array_slice($indoors, -1)), 'strlen'));
+
+ //Get textual ats
+ $ats = implode($this->translator->trans(' and '), array_filter(array_merge([implode(', ', array_slice($ats, 0, -1))], array_slice($ats, -1)), 'strlen'));
+
+ //Get textual ins
+ $ins = implode($this->translator->trans(' and '), array_filter(array_merge([implode(', ', array_slice($ins, 0, -1))], array_slice($ins, -1)), 'strlen'));
+
+ //Set title
+ $this->context['title'] = $this->translator->trans('%pseudonym% organizer', ['%pseudonym%' => $this->context['user']['pseudonym']]);
+
+ //With locations
+ if (!empty($locations)) {
+ //Set description
+ $this->context['description'] = ucfirst($this->translator->trans('%dances% %types% %indoors% calendar %ats% %ins% %pseudonym%', ['%dances%' => $dances, '%types%' => $types, '%indoors%' => $indoors, '%ats%' => $ats, '%ins%' => $ins, '%pseudonym%' => $this->translator->trans('by %pseudonym%', ['%pseudonym%' => $this->context['user']['pseudonym']])]));
+ //Without locations
+ } else {
+ //Set description
+ $this->context['description'] = $this->translator->trans('%pseudonym% calendar', ['%pseudonym%' => $this->context['user']['pseudonym']]);
+ }
+
+ //Set user description
+ $this->context['locations_description'] = $this->translator->trans('Libre Air %pseudonym% location list', ['%pseudonym%' => $this->translator->trans('by %pseudonym%', ['%pseudonym%' => $this->context['user']['pseudonym']])]);
+
+ //Set alternates
+ $this->context['alternates'] += $this->context['user']['alternates'];
+
+ //Create snippet forms for role_guest
+ //TODO: optimize this call
+ if ($isAdmin || $isGuest && $this->getUser() && $this->context['user']['id'] == $this->getUser()->getId()) {
+ //Fetch all user snippet
+ $snippets = $this->doctrine->getRepository(Snippet::class)->findByUserIdLocaleIndexByLocationId($id, $this->locale);
+
+ //Get user
+ $user = $this->doctrine->getRepository(User::class)->findOneById($id);
+
+ //Iterate on locations
+ foreach($this->context['locations'] as $locationId => $location) {
+ //With existing snippet
+ if (isset($snippets[$location['id']])) {
+ //Set existing in current
+ $current = $snippets[$location['id']];
+ //Without existing snippet
+ } else {
+ //Init snippet
+ $current = new Snippet();
+
+ //Set default locale
+ $current->setLocale($this->locale);
+
+ //Set default user
+ $current->setUser($user);
+
+ //Set default location
+ $current->setLocation($this->doctrine->getRepository(Location::class)->findOneById($location['id']));
+ }
+
+ //Create SnippetType form
+ $form = $this->factory->createNamed(
+ //Set form id
+ 'snippet_'.$locationId.'_'.$id.'_'.$this->locale,
+ //Set form type
+ 'Rapsys\AirBundle\Form\SnippetType',
+ //Set form data
+ $current
+ );
+
+ //Refill the fields in case of invalid form
+ $form->handleRequest($request);
+
+ //Handle submitted and valid form
+ //TODO: add a delete snippet ?
+ if ($form->isSubmitted() && $form->isValid()) {
+ //Get snippet
+ $snippet = $form->getData();
+
+ //Queue snippet save
+ $this->manager->persist($snippet);
+
+ //Flush to get the ids
+ $this->manager->flush();
+
+ //Add notice
+ $this->addFlash('notice', $this->translator->trans('Snippet for %user% %location% updated', ['%location%' => $location['at'], '%user%' => $this->context['user']['pseudonym']]));
+
+ //Redirect to cleaned url
+ return $this->redirectToRoute('rapsys_air_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
+ }