2014-02-03 21:35:48 -05:00
|
|
|
module SubmoduleHelper
|
|
|
|
include Gitlab::ShellAdapter
|
|
|
|
|
|
|
|
# links to files listing for submodule if submodule is a project on this server
|
|
|
|
def submodule_links(submodule_item)
|
2014-02-10 06:02:26 -05:00
|
|
|
url = @repository.submodule_url_for(@ref, submodule_item.path)
|
2014-02-10 02:55:38 -05:00
|
|
|
|
2014-02-03 21:35:48 -05:00
|
|
|
return url, nil unless url =~ /([^\/:]+\/[^\/]+\.git)\Z/
|
|
|
|
|
|
|
|
project = $1
|
|
|
|
project.chomp!('.git')
|
|
|
|
|
|
|
|
if self_url?(url, project)
|
|
|
|
return project_path(project), project_tree_path(project, submodule_item.id)
|
2014-02-25 16:42:45 -05:00
|
|
|
elsif relative_self_url?(url)
|
|
|
|
relative_self_links(url, submodule_item.id)
|
2014-02-03 21:35:48 -05:00
|
|
|
elsif github_dot_com_url?(url)
|
|
|
|
standard_links('github.com', project, submodule_item.id)
|
|
|
|
elsif gitlab_dot_com_url?(url)
|
|
|
|
standard_links('gitlab.com', project, submodule_item.id)
|
|
|
|
else
|
|
|
|
return url, nil
|
|
|
|
end
|
|
|
|
end
|
2014-02-10 02:55:38 -05:00
|
|
|
|
2014-02-03 21:35:48 -05:00
|
|
|
protected
|
|
|
|
|
|
|
|
def github_dot_com_url?(url)
|
|
|
|
url =~ /github\.com[\/:][^\/]+\/[^\/]+\Z/
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_dot_com_url?(url)
|
|
|
|
url =~ /gitlab\.com[\/:][^\/]+\/[^\/]+\Z/
|
|
|
|
end
|
2014-02-10 02:55:38 -05:00
|
|
|
|
2014-02-03 21:35:48 -05:00
|
|
|
def self_url?(url, project)
|
|
|
|
return true if url == [ Gitlab.config.gitlab.url, '/', project, '.git' ].join('')
|
|
|
|
url == gitlab_shell.url_to_repo(project)
|
|
|
|
end
|
2014-02-10 02:55:38 -05:00
|
|
|
|
2014-02-25 16:42:45 -05:00
|
|
|
def relative_self_url?(url)
|
2014-02-26 17:33:04 -05:00
|
|
|
# (./)?(../repo.git) || (./)?(../../project/repo.git) )
|
|
|
|
url =~ /^((\.\/)?(\.\.\/))(?!(\.\.)|(.*\/)).*\.git\Z/ || url =~ /^((\.\/)?(\.\.\/){2})(?!(\.\.))([^\/]*)\/(?!(\.\.)|(.*\/)).*\.git\Z/
|
2014-02-25 16:42:45 -05:00
|
|
|
end
|
|
|
|
|
2014-02-03 21:35:48 -05:00
|
|
|
def standard_links(host, project, commit)
|
|
|
|
base = [ 'https://', host, '/', project ].join('')
|
|
|
|
return base, [ base, '/tree/', commit ].join('')
|
|
|
|
end
|
2014-02-25 16:42:45 -05:00
|
|
|
|
|
|
|
def relative_self_links(url, commit)
|
2014-02-26 17:33:04 -05:00
|
|
|
if url.scan(/(\.\.\/)/).size == 2
|
2014-02-28 11:22:07 -05:00
|
|
|
base = url[/([^\/]*\/[^\/]*)\.git/, 1]
|
2014-02-25 16:42:45 -05:00
|
|
|
else
|
2014-02-28 11:22:07 -05:00
|
|
|
base = [ @project.group.path, '/', url[/([^\/]*)\.git/, 1] ].join('')
|
2014-02-25 16:42:45 -05:00
|
|
|
end
|
2014-02-28 11:22:07 -05:00
|
|
|
return project_path(base), project_tree_path(base, commit)
|
2014-02-25 16:42:45 -05:00
|
|
|
end
|
2014-02-10 02:55:38 -05:00
|
|
|
end
|