1
0
Fork 0
mirror of https://github.com/jiriks74/presence.nvim synced 2025-04-05 12:03:00 +02:00

Check repo URL in blacklisted

This commit is contained in:
Cherry 2023-07-25 16:04:55 -04:00 committed by Jiří Štefka
parent ab97802975
commit 19a4c5cee9

View file

@ -677,40 +677,51 @@ end
function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
local parent_dirname = nil
local project_dirname = nil
local git_repo
-- Parse parent/project directory name
if parent_dirpath then
parent_dirname = self.get_filename(parent_dirpath, self.os.path_separator)
git_repo = Presence:get_git_repo_url(parent_dirpath)
end
if project_dirpath then
project_dirname = self.get_filename(project_dirpath, self.os.path_separator)
end
print(git_repo)
-- Blacklist table
local blacklist_table = self.options["blacklist"]
-- Loop over the values to see if the provided project/path is in the blacklist
for _, val in pairs(blacklist_table) do
-- Matches buffer exactly
if buffer:match(val) == buffer then
return true
end
if buffer:match(val) == buffer then return true end
-- Match parent either by Lua pattern or by plain string
local is_parent_directory_blacklisted = parent_dirpath
and (
(parent_dirpath:match(val) == parent_dirpath or parent_dirname:match(val) == parent_dirname)
or (parent_dirpath:find(val, nil, true) or parent_dirname:find(val, nil, true))
)
local is_parent_directory_blacklisted = parent_dirpath and
((parent_dirpath:match(val) == parent_dirpath or
parent_dirname:match(val) == parent_dirname) or
(parent_dirpath:find(val, nil, true) or
parent_dirname:find(val, nil, true)))
if is_parent_directory_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))
)
local is_git_repo_blacklisted = git_repo and
((git_repo:match(val) == git_repo) == git_repo or
(git_repo: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
return true
end
@ -719,6 +730,25 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
return false
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
function Presence:get_buttons(buffer, parent_dirpath)
-- User configured a static buttons table
@ -731,17 +761,7 @@ function Presence:get_buttons(buffer, parent_dirpath)
end
-- Retrieve the git repository URL
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
end
local repo_url = Presence:get_git_repo_url(parent_dirpath)
-- User configured a function to dynamically create buttons table
if type(self.options.buttons) == "function" then