- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
import { decode as b64u } from './base64url.js';
|
|
import { decoder } from '../lib/buffer_utils.js';
|
|
import { isObject } from '../lib/type_checks.js';
|
|
export function decodeProtectedHeader(token) {
|
|
let protectedB64u;
|
|
if (typeof token === 'string') {
|
|
const parts = token.split('.');
|
|
if (parts.length === 3 || parts.length === 5) {
|
|
;
|
|
[protectedB64u] = parts;
|
|
}
|
|
}
|
|
else if (typeof token === 'object' && token) {
|
|
if ('protected' in token) {
|
|
protectedB64u = token.protected;
|
|
}
|
|
else {
|
|
throw new TypeError('Token does not contain a Protected Header');
|
|
}
|
|
}
|
|
try {
|
|
if (typeof protectedB64u !== 'string' || !protectedB64u) {
|
|
throw new Error();
|
|
}
|
|
const result = JSON.parse(decoder.decode(b64u(protectedB64u)));
|
|
if (!isObject(result)) {
|
|
throw new Error();
|
|
}
|
|
return result;
|
|
}
|
|
catch {
|
|
throw new TypeError('Invalid Token or Protected Header formatting');
|
|
}
|
|
}
|