forked from zbirenbaum/copilot.lua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
249 lines (205 loc) · 5.61 KB
/
init.lua
File metadata and controls
249 lines (205 loc) · 5.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
local api = require("copilot.api")
local c = require("copilot.client")
local logger = require("copilot.logger")
local M = {}
local function echo(message)
vim.cmd('echom "[Copilot] ' .. tostring(message):gsub('"', '\\"') .. '"')
end
function M.setup(client)
local function copy_to_clipboard(str)
vim.cmd(string.format(
[[
let @+ = "%s"
let @* = "%s"
]],
str,
str
))
end
local function open_signin_popup(code, url)
local lines = {
" [Copilot] ",
"",
" First copy your one-time code: ",
" " .. code .. " ",
" In your browser, visit: ",
" " .. url .. " ",
"",
" ...waiting, it might take a while and ",
" this popup will auto close once done... ",
}
local height, width = #lines, math.max(unpack(vim.tbl_map(function(line)
return #line
end, lines)))
local bufnr = vim.api.nvim_create_buf(false, true)
vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, lines)
local winid = vim.api.nvim_open_win(bufnr, true, {
relative = "editor",
style = "minimal",
border = "single",
row = (vim.o.lines - height) / 2,
col = (vim.o.columns - width) / 2,
height = height,
width = width,
})
vim.api.nvim_set_option_value("winhighlight", "Normal:Normal", { win = winid })
return function()
vim.api.nvim_win_close(winid, true)
vim.api.nvim_buf_delete(bufnr, { force = true })
end
end
local initiate_setup = coroutine.wrap(function()
local cserr, status = api.check_status(client)
if cserr then
echo(cserr)
return
end
if status.user then
echo("Authenticated as GitHub user: " .. status.user)
return
end
local siierr, signin = api.sign_in_initiate(client)
if siierr then
echo(siierr)
return
end
if not signin.verificationUri or not signin.userCode then
echo("Failed to setup")
return
end
copy_to_clipboard(signin.userCode)
local close_signin_popup = open_signin_popup(signin.userCode, signin.verificationUri)
local sicerr, confirm = api.sign_in_confirm(client, { userCode = signin.userCode })
close_signin_popup()
if sicerr then
echo(sicerr)
return
end
if string.lower(confirm.status) ~= "ok" then
echo("Authentication failure: " .. confirm.error.message)
return
end
echo("Authenticated as GitHub user: " .. confirm.user)
end)
initiate_setup()
end
function M.signin()
c.use_client(function(client)
M.setup(client)
end)
end
function M.signout()
c.use_client(function(client)
api.check_status(
client,
{ options = { localChecksOnly = true } },
---@param status copilot_check_status_data
function(err, status)
if err then
echo(err)
return
end
if status.user then
echo("Signed out as GitHub user " .. status.user)
else
echo("Not signed in")
end
api.sign_out(client, function() end)
end
)
end)
end
---@return string|nil
function M.find_config_path()
local config = vim.fn.expand("$XDG_CONFIG_HOME")
if config and vim.fn.isdirectory(config) > 0 then
return config
elseif vim.fn.has("win32") > 0 then
config = vim.fn.expand("~/AppData/Local")
if vim.fn.isdirectory(config) > 0 then
return config
end
else
config = vim.fn.expand("~/.config")
if vim.fn.isdirectory(config) > 0 then
return config
end
end
logger.error("could not find config path")
end
---@return table|nil
function M.get_creds()
local filename = M.find_config_path() .. "/github-copilot/apps.json"
if vim.fn.filereadable(filename) == 0 then
logger.error("Copilot auth file could not be read from:" .. filename)
return
end
local filedata = vim.api.nvim_eval("readfile('" .. filename .. "')")
if not filedata or #filedata == 0 then
logger.error("Copilot's apps.json file not found or empty, make sure to sign in first")
return
end
local appsdata = vim.json.decode(filedata[1])
return appsdata
end
function M.info()
local info = M.get_creds()
if not info then
logger.error("no GitHub Copilot token found, make sure to sign in first")
return
end
logger.notify("GitHub Copilot token information: ", info)
end
---@class copilot_auth_cache
---@field authenticated boolean|nil
---@field timestamp number
---@type copilot_auth_cache
local auth_cache = {
authenticated = nil,
timestamp = 0,
}
---@param authenticated boolean
---@return number
local function get_cache_ttl(authenticated)
if authenticated then
return 300000 -- 5 minutes for true status
else
return 30000 -- 30 seconds for false status
end
end
---@param client vim.lsp.Client
---@param callback? fun()
local function check_status(client, callback)
api.check_status(client, {}, function(err, status)
auth_cache.timestamp = vim.loop.now()
if not err and status and status.user then
auth_cache.authenticated = true
elseif not err then
auth_cache.authenticated = false
end
if callback then
callback()
end
end)
end
---@param callback? fun()
---@return boolean
function M.is_authenticated(callback)
local current_time = vim.loop.now()
if not c.initialized then
return false
end
if auth_cache.authenticated ~= nil then
local ttl = get_cache_ttl(auth_cache.authenticated)
if (current_time - auth_cache.timestamp) < ttl then
return auth_cache.authenticated
end
end
local client = c.get()
if not client then
return false
end
check_status(client, callback)
return auth_cache.authenticated or false
end
return M