mirror of
https://github.com/jiriks74/presence.nvim
synced 2025-04-05 20:12:59 +02:00
Check repo URL in blacklisted
This commit is contained in:
parent
ab97802975
commit
19a4c5cee9
1 changed files with 910 additions and 890 deletions
|
@ -677,40 +677,51 @@ end
|
||||||
function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
|
function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
|
||||||
local parent_dirname = nil
|
local parent_dirname = nil
|
||||||
local project_dirname = nil
|
local project_dirname = nil
|
||||||
|
local git_repo
|
||||||
|
|
||||||
-- Parse parent/project directory name
|
-- Parse parent/project directory name
|
||||||
if parent_dirpath then
|
if parent_dirpath then
|
||||||
parent_dirname = self.get_filename(parent_dirpath, self.os.path_separator)
|
parent_dirname = self.get_filename(parent_dirpath, self.os.path_separator)
|
||||||
|
git_repo = Presence:get_git_repo_url(parent_dirpath)
|
||||||
end
|
end
|
||||||
|
|
||||||
if project_dirpath then
|
if project_dirpath then
|
||||||
project_dirname = self.get_filename(project_dirpath, self.os.path_separator)
|
project_dirname = self.get_filename(project_dirpath, self.os.path_separator)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
print(git_repo)
|
||||||
|
|
||||||
-- Blacklist table
|
-- Blacklist table
|
||||||
local blacklist_table = self.options["blacklist"]
|
local blacklist_table = self.options["blacklist"]
|
||||||
|
|
||||||
-- Loop over the values to see if the provided project/path is in the blacklist
|
-- Loop over the values to see if the provided project/path is in the blacklist
|
||||||
for _, val in pairs(blacklist_table) do
|
for _, val in pairs(blacklist_table) do
|
||||||
-- Matches buffer exactly
|
-- Matches buffer exactly
|
||||||
if buffer:match(val) == buffer then
|
if buffer:match(val) == buffer then return true end
|
||||||
return true
|
|
||||||
end
|
|
||||||
-- Match parent either by Lua pattern or by plain string
|
-- Match parent either by Lua pattern or by plain string
|
||||||
local is_parent_directory_blacklisted = parent_dirpath
|
local is_parent_directory_blacklisted = parent_dirpath and
|
||||||
and (
|
((parent_dirpath:match(val) == parent_dirpath or
|
||||||
(parent_dirpath:match(val) == parent_dirpath or parent_dirname:match(val) == parent_dirname)
|
parent_dirname:match(val) == parent_dirname) or
|
||||||
or (parent_dirpath:find(val, nil, true) or parent_dirname:find(val, nil, true))
|
(parent_dirpath:find(val, nil, true) or
|
||||||
)
|
parent_dirname:find(val, nil, true)))
|
||||||
if is_parent_directory_blacklisted then
|
if is_parent_directory_blacklisted then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Match project either by Lua pattern or by plain string
|
-- Match project either by Lua pattern or by plain string
|
||||||
local is_project_directory_blacklisted = project_dirpath
|
local is_git_repo_blacklisted = git_repo and
|
||||||
and (
|
((git_repo:match(val) == git_repo) == git_repo or
|
||||||
(project_dirpath:match(val) == project_dirpath or project_dirname:match(val) == project_dirname)
|
(git_repo:find(val, nil, true)))
|
||||||
or (project_dirpath:find(val, nil, true) or project_dirname:find(val, nil, true))
|
if is_git_repo_blacklisted then
|
||||||
)
|
return true
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Match project either by Lua pattern or by plain string
|
||||||
|
local is_project_directory_blacklisted = project_dirpath and
|
||||||
|
((project_dirpath:match(val) == project_dirpath or
|
||||||
|
project_dirname:match(val) == project_dirname) or
|
||||||
|
(project_dirpath:find(val, nil, true) or
|
||||||
|
project_dirname:find(val, nil, true)))
|
||||||
if is_project_directory_blacklisted then
|
if is_project_directory_blacklisted then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
@ -719,6 +730,25 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Presence:get_git_repo_url(parent_dirpath)
|
||||||
|
local repo_url
|
||||||
|
|
||||||
|
if parent_dirpath then
|
||||||
|
-- Escape quotes in the file path
|
||||||
|
local path = parent_dirpath:gsub([["]], [[\"]])
|
||||||
|
local git_url_cmd = "git config --get remote.origin.url"
|
||||||
|
local cmd = path
|
||||||
|
and string.format([[cd "%s" && %s]], path, git_url_cmd)
|
||||||
|
or git_url_cmd
|
||||||
|
|
||||||
|
-- Trim and coerce empty string value to null
|
||||||
|
repo_url = vim.trim(vim.fn.system(cmd))
|
||||||
|
repo_url = repo_url ~= "" and repo_url or nil
|
||||||
|
|
||||||
|
return repo_url
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- Get either user-configured buttons or the create default "View Repository" button definition
|
-- Get either user-configured buttons or the create default "View Repository" button definition
|
||||||
function Presence:get_buttons(buffer, parent_dirpath)
|
function Presence:get_buttons(buffer, parent_dirpath)
|
||||||
-- User configured a static buttons table
|
-- User configured a static buttons table
|
||||||
|
@ -731,17 +761,7 @@ function Presence:get_buttons(buffer, parent_dirpath)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Retrieve the git repository URL
|
-- Retrieve the git repository URL
|
||||||
local repo_url
|
local repo_url = Presence:get_git_repo_url(parent_dirpath)
|
||||||
if parent_dirpath then
|
|
||||||
-- Escape quotes in the file path
|
|
||||||
local path = parent_dirpath:gsub([["]], [[\"]])
|
|
||||||
local git_url_cmd = "git config --get remote.origin.url"
|
|
||||||
local cmd = path and string.format([[cd "%s" && %s]], path, git_url_cmd) or git_url_cmd
|
|
||||||
|
|
||||||
-- Trim and coerce empty string value to null
|
|
||||||
repo_url = vim.trim(vim.fn.system(cmd))
|
|
||||||
repo_url = repo_url ~= "" and repo_url or nil
|
|
||||||
end
|
|
||||||
|
|
||||||
-- User configured a function to dynamically create buttons table
|
-- User configured a function to dynamically create buttons table
|
||||||
if type(self.options.buttons) == "function" then
|
if type(self.options.buttons) == "function" then
|
||||||
|
|
Loading…
Reference in a new issue