mirror of
https://github.com/samuelthomas2774/nxapi.git
synced 2026-04-12 08:06:20 -05:00
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import Table from '../../util/table.js';
|
|
import type { Arguments as ParentArguments } from './index.js';
|
|
import createDebug from '../../util/debug.js';
|
|
import { ArgumentsCamelCase, Argv, YargsArguments } from '../../util/yargs.js';
|
|
import { initStorage } from '../../util/storage.js';
|
|
import { getBulletToken } from '../../common/auth/splatnet3.js';
|
|
|
|
const debug = createDebug('cli:splatnet3:schedule');
|
|
|
|
export const command = 'schedule';
|
|
export const desc = 'Show stage schedules';
|
|
|
|
export function builder(yargs: Argv<ParentArguments>) {
|
|
return yargs.option('user', {
|
|
describe: 'Nintendo Account ID',
|
|
type: 'string',
|
|
}).option('token', {
|
|
describe: 'Nintendo Account session token',
|
|
type: 'string',
|
|
}).option('json', {
|
|
describe: 'Output raw JSON',
|
|
type: 'boolean',
|
|
}).option('json-pretty-print', {
|
|
describe: 'Output pretty-printed JSON',
|
|
type: 'boolean',
|
|
});
|
|
}
|
|
|
|
type Arguments = YargsArguments<ReturnType<typeof builder>>;
|
|
|
|
export async function handler(argv: ArgumentsCamelCase<Arguments>) {
|
|
const storage = await initStorage(argv.dataPath);
|
|
|
|
const usernsid = argv.user ?? await storage.getItem('SelectedUser');
|
|
const token: string = argv.token ||
|
|
await storage.getItem('NintendoAccountToken.' + usernsid);
|
|
const {splatnet} = await getBulletToken(storage, token, argv.zncProxyUrl, argv.autoUpdateSession);
|
|
|
|
const schedules = await splatnet.getSchedules();
|
|
|
|
if (argv.jsonPrettyPrint) {
|
|
console.log(JSON.stringify(schedules.data, null, 4));
|
|
return;
|
|
}
|
|
if (argv.json) {
|
|
console.log(JSON.stringify(schedules.data));
|
|
return;
|
|
}
|
|
|
|
throw new Error('Not implemented');
|
|
}
|