refactor: migrate credential consumers to git_credential

Problem: `credentials.lua`, `submit.lua`, and `scraper.lua` all
routed through `cache.get/set/clear_credentials`, which no longer
exists.

Solution: replace all `cache` credential calls with direct
`git_credential.get/store/reject` calls. Remove unused `cache`
imports where applicable.
This commit is contained in:
Barrett Ruth 2026-03-07 19:46:32 -05:00
parent be1bc2095e
commit d1127f3e9b
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
3 changed files with 15 additions and 14 deletions

View file

@ -1,8 +1,8 @@
local M = {}
local cache = require('cp.cache')
local config = require('cp.config')
local constants = require('cp.constants')
local git_credential = require('cp.git_credential')
local logger = require('cp.log')
local state = require('cp.state')
@ -14,7 +14,7 @@ local STATUS_MSGS = {
}
local function prompt_credentials(platform, callback)
local saved = cache.get_credentials(platform)
local saved = git_credential.get(platform)
if saved and saved.username and saved.password then
callback(saved)
return
@ -109,12 +109,12 @@ function M.submit(opts)
function(result)
vim.schedule(function()
if result and result.success then
cache.set_credentials(platform, creds)
git_credential.store(platform, creds)
logger.log('Submitted successfully', { level = vim.log.levels.INFO, override = true })
else
local err = result and result.error or 'unknown error'
if err == 'bad_credentials' or err:match('^Login failed') then
cache.clear_credentials(platform)
git_credential.reject(platform, creds)
logger.log(
'Submit failed: ' .. (constants.LOGIN_ERRORS[err] or err),
{ level = vim.log.levels.ERROR }