mirror of
https://github.com/PretendoNetwork/BOSS.git
synced 2026-07-04 00:50:57 -05:00
151 lines
4.3 KiB
TypeScript
151 lines
4.3 KiB
TypeScript
import crypto from 'node:crypto';
|
|
import fs from 'fs-extra';
|
|
import { createChannel, createClient, Metadata } from 'nice-grpc';
|
|
import { AccountDefinition } from '@pretendonetwork/grpc/account/account_service';
|
|
import { FriendsDefinition } from '@pretendonetwork/grpc/friends/friends_service';
|
|
import { config } from '@/config-manager';
|
|
import { logger } from './logger';
|
|
import type { FriendsClient } from '@pretendonetwork/grpc/friends/friends_service';
|
|
import type { AccountClient } from '@pretendonetwork/grpc/account/account_service';
|
|
import type { GetNEXDataResponse } from '@pretendonetwork/grpc/account/get_nex_data_rpc';
|
|
import type { GetUserDataResponse } from '@pretendonetwork/grpc/account/get_user_data_rpc';
|
|
import type { GetUserFriendPIDsResponse } from '@pretendonetwork/grpc/friends/get_user_friend_pids_rpc';
|
|
import type { Response } from 'express';
|
|
import type { Stats } from 'node:fs';
|
|
|
|
const gRPCAccountChannel = createChannel(`${config.grpc.account.address}:${config.grpc.account.port}`);
|
|
const gRPCAccountClient: AccountClient = createClient(AccountDefinition, gRPCAccountChannel);
|
|
|
|
const gRPCFriendsChannel = createChannel(`${config.grpc.friends.address}:${config.grpc.friends.port}`);
|
|
const gRPCFriendsClient: FriendsClient = createClient(FriendsDefinition, gRPCFriendsChannel);
|
|
|
|
const VALID_COUNTRIES = [
|
|
'GB', 'US', 'IT', 'NL', 'DE', 'CA', 'FR', 'HU', 'CR',
|
|
'AU', 'BR', 'RO', 'CL', 'MX', 'RU', 'ES', 'JP', 'CZ',
|
|
'PT', 'MT', 'AR', 'SE', 'PL', 'IE', 'BE', 'HT', 'NO',
|
|
'FI', 'GR', 'BO', 'AT', 'VE', 'PA', 'PE', 'GF', 'SA',
|
|
'CO', 'LT', 'NA', 'CH', 'CY', 'RS', 'KY', 'GP', 'DK',
|
|
'KR', 'LU', 'SV', 'VA', 'GT', 'SK', 'HR', 'ZA', 'DO',
|
|
'UY', 'LV', 'HN', 'JM', 'TR', 'IN', 'ER', 'AW', 'NZ',
|
|
'EC', 'TW', 'EE', 'CN', 'SI', 'AI', 'BG', 'NI', 'IS',
|
|
'MQ', 'BZ', 'BA', 'MY', 'AZ', 'ZW', 'AL', 'IM', 'VG',
|
|
'VI', 'BM', 'GY', 'SR', 'MS', 'TC', 'BB', 'TT'
|
|
];
|
|
|
|
const VALID_LANGUAGES = [
|
|
'en', 'it', 'de', 'fr', 'es', 'us', 'pt', 'ru', 'ja',
|
|
'nl', 'ko', 'zh', 'tw'
|
|
];
|
|
|
|
const VALID_FILE_TYPES = [
|
|
'Message', 'AppData'
|
|
];
|
|
|
|
const VALID_FILE_NOTIFY_CONDITIONS = [
|
|
'app', 'account'
|
|
];
|
|
|
|
export function fileErrCallback(response: Response) {
|
|
return (err: NodeJS.ErrnoException): void => {
|
|
if (err) {
|
|
if (err.code === 'ENOENT') {
|
|
response.sendStatus(404);
|
|
} else {
|
|
if (!response.headersSent) {
|
|
response.status(500).send('Server Error');
|
|
}
|
|
logger.error('Error in sending file: ' + err.message);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
export function md5(input: crypto.BinaryLike): string {
|
|
return crypto.createHash('md5').update(input).digest('hex');
|
|
}
|
|
|
|
export function isValidCountryCode(countryCode: string): boolean {
|
|
return VALID_COUNTRIES.includes(countryCode);
|
|
}
|
|
|
|
export function isValidLanguage(language: string): boolean {
|
|
return VALID_LANGUAGES.includes(language);
|
|
}
|
|
|
|
export function isValidFileType(type: string): boolean {
|
|
return VALID_FILE_TYPES.includes(type);
|
|
}
|
|
|
|
export function isValidFileNotifyCondition(condition: string): boolean {
|
|
return VALID_FILE_NOTIFY_CONDITIONS.includes(condition);
|
|
}
|
|
|
|
export async function fileStatOrNull(filePath: string): Promise<Stats | null> {
|
|
try {
|
|
return await fs.stat(filePath);
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export async function getUserDataByPID(pid: number): Promise<GetUserDataResponse | null> {
|
|
try {
|
|
return await gRPCAccountClient.getUserData({
|
|
pid: pid
|
|
}, {
|
|
metadata: Metadata({
|
|
'X-API-Key': config.grpc.account.api_key
|
|
})
|
|
});
|
|
} catch {
|
|
// TODO - Handle error
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export async function getNEXDataByPID(pid: number): Promise<GetNEXDataResponse | null> {
|
|
try {
|
|
return await gRPCAccountClient.getNEXData({
|
|
pid: pid
|
|
}, {
|
|
metadata: Metadata({
|
|
'X-API-Key': config.grpc.account.api_key
|
|
})
|
|
});
|
|
} catch {
|
|
// TODO - Handle error
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export async function getUserDataByToken(token: string): Promise<GetUserDataResponse | null> {
|
|
try {
|
|
return await gRPCAccountClient.exchangeTokenForUserData({
|
|
token: token
|
|
}, {
|
|
metadata: Metadata({
|
|
'X-API-Key': config.grpc.account.api_key
|
|
})
|
|
});
|
|
} catch (error) {
|
|
// TODO - Handle error
|
|
console.log(error);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export async function getFriends(pid: number): Promise<GetUserFriendPIDsResponse | null> {
|
|
try {
|
|
return await gRPCFriendsClient.getUserFriendPIDs({
|
|
pid: pid
|
|
}, {
|
|
metadata: Metadata({
|
|
'X-API-Key': config.grpc.friends.api_key
|
|
})
|
|
});
|
|
} catch {
|
|
// TODO - Handle error
|
|
return null;
|
|
}
|
|
}
|