// tslint:disable-next-line:no-duplicate-imports // import * as path from 'path'; // import core from '../../chat/core'; import { Orientation, Gender, FurryPreference, Species } from '../matcher'; import {Character as ComplexCharacter, CharacterFriend, CharacterGroup, GuestbookState} from '../../site/character_page/interfaces'; import {CharacterImage} from '../../interfaces'; export interface ProfileRecord { id: string; name: string; profileData: ComplexCharacter; firstSeen: number; lastFetched: number; gender: Gender | null; orientation: Orientation | null; furryPreference: FurryPreference | null; species: Species | null; age: number | null; domSubRole: number | null; position: number | null; // lastCounted: number | null; // guestbookCount: number | null; // friendCount: number | null; // groupCount: number | null; lastMetaFetched: number | null; guestbook: GuestbookState | null; images: CharacterImage[] | null; friends: CharacterFriend[] | null; groups: CharacterGroup[] | null; } // export type Statement = any; // export type Database = any; export interface PermanentIndexedStore { getProfile(name: string): Promise; storeProfile(c: ComplexCharacter): Promise; updateProfileMeta( name: string, images: CharacterImage[] | null, guestbook: GuestbookState | null, friends: CharacterFriend[] | null, groups: CharacterGroup[] | null ): Promise; start(): Promise; stop(): Promise; } // export abstract class SqlStore implements PermanentIndexedStore { // protected dbFile: string; // protected checkpointTimer: NodeJS.Timer | null = null; // // constructor(dbName: string = 'fchat-ascending.sqlite') { // this.dbFile = path.join(core.state.generalSettings!.logDirectory, dbName); // } // // // tslint:disable-next-line: prefer-function-over-method // protected toProfileId(name: string): string { // return name.toLowerCase(); // } // // abstract getProfile(name: string): Promise; // // abstract start(): Promise; // abstract stop(): Promise; // // // tslint:disable-next-line no-any // protected abstract run(statementName: 'stmtStoreProfile' | 'stmtUpdateCounts', data: any[]): Promise; // // // async storeProfile(c: ComplexCharacter): Promise { // const ca = new CharacterAnalysis(c.character); // // const data = [ // this.toProfileId(c.character.name), // c.character.name, // JSON.stringify(c), // Math.round(Date.now() / 1000), // Math.round(Date.now() / 1000), // ca.gender, // ca.orientation, // ca.furryPreference, // ca.species, // ca.age, // null, // domSubRole // null // position // ]; // // await this.run('stmtStoreProfile', data); // } // // async updateProfileMeta( // name: string, // images: CharacterImage[] | null, // guestbook: GuestbookState | null, // friends: CharacterFriend[] | null, // groups: CharacterGroup[] | null // ): Promise { // throw new Error('Not implemented'); // } // // // async updateProfileCounts( // // name: string, // // guestbookCount: number | null, // // friendCount: number | null, // // groupCount: number | null // // ): Promise { // // await this.run( // // 'stmtUpdateCounts', // // [Math.round(Date.now() / 1000), guestbookCount, friendCount, groupCount, this.toProfileId(name)] // // ); // // } // } //