feat(codechef): implement full CodeChef support (#354)

## Problem

CodeChef had no working login, submit, or contest list. The browser
selectors were wrong, the contest list was missing present/past
contests,
and problem/contest URLs were unset.

## Solution

Fix login and submit selectors for the Drupal-based site. Paginate
`/api/list/contests/past` to collect all 228 Starters, then expand each
parent contest into individual division entries (e.g. `START228 (Div.
4)`).
Add language IDs, correct `url`/`contest_url`/`standings_url` in
metadata,
and make `:CP <platform>` open the contest picker directly.
This commit is contained in:
Barrett Ruth 2026-03-06 23:10:44 -05:00 committed by GitHub
parent c7f2af16d4
commit 3c11d609f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 336 additions and 158 deletions

View file

@ -58,11 +58,18 @@ local function contest_picker(platform, refresh, language)
})
end
function M.pick(language)
---@param language? string
---@param platform? string
function M.pick(language, platform)
if platform then
contest_picker(platform, false, language)
return
end
local fzf = require('fzf-lua')
local platforms = picker_utils.get_platforms()
local entries = vim.tbl_map(function(platform)
return platform.display_name
local entries = vim.tbl_map(function(p)
return p.display_name
end, platforms)
return fzf.fzf_exec(entries, {
@ -74,16 +81,16 @@ function M.pick(language)
end
local selected_name = selected[1]
local platform = nil
local found = nil
for _, p in ipairs(platforms) do
if p.display_name == selected_name then
platform = p
found = p
break
end
end
if platform then
contest_picker(platform.id, false, language)
if found then
contest_picker(found.id, false, language)
end
end,
},