Hash :
ea367fac
Author :
Thomas de Grivel
Date :
2023-02-03T14:40:59
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
## kmxgit
## Copyright 2022 kmx.io <contact@kmx.io>
##
## Permission is hereby granted to use this software granted
## the above copyright notice and this permission paragraph
## are included in all copies and substantial portions of this
## software.
##
## THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
## THIS SOFTWARE.
defmodule KmxgitWeb.SlugController do
use KmxgitWeb, :controller
alias Kmxgit.OrganisationManager.Organisation
alias Kmxgit.RepositoryManager
alias Kmxgit.RepositoryManager.Repository
alias Kmxgit.SlugManager
alias Kmxgit.UserManager.User
alias KmxgitWeb.ErrorView
alias KmxgitWeb.OrganisationView
alias KmxgitWeb.UserView
def show(conn, params) do
if ! String.match?(conn.request_path, ~r(/$)) do
redirect conn, to: conn.request_path <> "/"
else
current_user = conn.assigns.current_user
slug = SlugManager.get_slug(params["slug"])
if !slug do
not_found(conn)
else
user = slug.user
if user do
owned_repos = User.owned_repositories(user)
contributor_repos = RepositoryManager.list_contributor_repositories(user)
repos = owned_repos ++ contributor_repos
|> Enum.filter(fn repo ->
repo.public_access || Repository.member?(repo, current_user)
end)
conn
|> assign(:disk_usage, User.disk_usage(user))
|> assign(:disk_usage_all, Repository.disk_usage(repos))
|> assign(:repos, repos)
|> assign(:page_title, gettext("User %{login}", login: User.login(user)))
|> assign(:user, user)
|> put_view(UserView)
|> render("show.html")
else
org = slug.organisation
if org do
repos = org.owned_repositories
|> Enum.filter(fn repo ->
repo.public_access || Repository.member?(repo, current_user)
end)
|> Enum.sort(fn a, b ->
a.slug < b.slug
end)
conn
|> assign(:current_organisation, org)
|> assign(:disk_usage, Organisation.disk_usage(org))
|> assign(:org, org)
|> assign(:page_title, org.name || org.slug_)
|> assign(:repos, repos)
|> put_view(OrganisationView)
|> render("show.html")
else
raise "invalid slug"
end
end
end
end
end
end