debian-mirror-gitlab/app/helpers/submodule_helper.rb

75 lines
2.3 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module SubmoduleHelper
include Gitlab::ShellAdapter
# links to files listing for submodule if submodule is a project on this server
2015-09-11 14:41:01 +05:30
def submodule_links(submodule_item, ref = nil, repository = @repository)
url = repository.submodule_url_for(ref, submodule_item.path)
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
return url, nil unless url =~ /([^\/:]+)\/([^\/]+\.git)\Z/
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
namespace = $1
project = $2
2014-09-02 18:07:02 +05:30
project.chomp!('.git')
2015-04-26 12:48:37 +05:30
if self_url?(url, namespace, project)
return namespace_project_path(namespace, project),
namespace_project_tree_path(namespace, project,
submodule_item.id)
2014-09-02 18:07:02 +05:30
elsif relative_self_url?(url)
relative_self_links(url, submodule_item.id)
elsif github_dot_com_url?(url)
2015-04-26 12:48:37 +05:30
standard_links('github.com', namespace, project, submodule_item.id)
2014-09-02 18:07:02 +05:30
elsif gitlab_dot_com_url?(url)
2015-04-26 12:48:37 +05:30
standard_links('gitlab.com', namespace, project, submodule_item.id)
2014-09-02 18:07:02 +05:30
else
return url, nil
end
end
protected
def github_dot_com_url?(url)
url =~ /github\.com[\/:][^\/]+\/[^\/]+\Z/
end
def gitlab_dot_com_url?(url)
url =~ /gitlab\.com[\/:][^\/]+\/[^\/]+\Z/
end
2015-04-26 12:48:37 +05:30
def self_url?(url, namespace, project)
return true if url == [ Gitlab.config.gitlab.url, '/', namespace, '/',
project, '.git' ].join('')
url == gitlab_shell.url_to_repo([namespace, '/', project].join(''))
2014-09-02 18:07:02 +05:30
end
def relative_self_url?(url)
# (./)?(../repo.git) || (./)?(../../project/repo.git) )
2015-04-26 12:48:37 +05:30
url =~ /\A((\.\/)?(\.\.\/))(?!(\.\.)|(.*\/)).*\.git\z/ || url =~ /\A((\.\/)?(\.\.\/){2})(?!(\.\.))([^\/]*)\/(?!(\.\.)|(.*\/)).*\.git\z/
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def standard_links(host, namespace, project, commit)
base = [ 'https://', host, '/', namespace, '/', project ].join('')
[base, [ base, '/tree/', commit ].join('')]
2014-09-02 18:07:02 +05:30
end
def relative_self_links(url, commit)
2015-04-26 12:48:37 +05:30
# Map relative links to a namespace and project
# For example:
# ../bar.git -> same namespace, repo bar
# ../foo/bar.git -> namespace foo, repo bar
# ../../foo/bar/baz.git -> namespace bar, repo baz
components = url.split('/')
base = components.pop.gsub(/.git$/, '')
namespace = components.pop.gsub(/^\.\.$/, '')
if namespace.empty?
2015-09-11 14:41:01 +05:30
namespace = @project.namespace.path
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
[
namespace_project_path(namespace, base),
namespace_project_tree_path(namespace, base, commit)
]
2014-09-02 18:07:02 +05:30
end
end