2023-07-20 19:32:15 +02:00
#!/usr/bin/env node
2023-08-29 23:05:18 +02:00
// native node modules
2023-08-29 23:20:37 +02:00
const crypto = require ( 'crypto' ) ;
2023-08-29 23:06:37 +02:00
const fs = require ( 'fs' ) ;
2023-08-29 23:20:37 +02:00
const http = require ( "http" ) ;
const https = require ( 'https' ) ;
2023-08-29 23:06:37 +02:00
const path = require ( 'path' ) ;
2023-08-29 23:20:37 +02:00
const readline = require ( 'readline' ) ;
2023-08-29 23:34:41 +02:00
const util = require ( 'util' ) ;
const { Readable } = require ( 'stream' ) ;
2023-08-29 23:05:18 +02:00
2023-08-29 23:16:39 +02:00
// cli/fs related library imports
2023-08-29 23:26:59 +02:00
const open = require ( 'open' ) ;
2023-08-29 23:23:53 +02:00
const sanitize = require ( 'sanitize-filename' ) ;
2023-08-29 23:16:39 +02:00
const writeFileAtomicSync = require ( 'write-file-atomic' ) . sync ;
2023-08-29 23:23:53 +02:00
const yargs = require ( 'yargs/yargs' ) ;
const { hideBin } = require ( 'yargs/helpers' ) ;
2023-08-29 23:16:39 +02:00
2023-08-29 23:34:41 +02:00
// express/server related library imports
const cors = require ( 'cors' ) ;
const doubleCsrf = require ( 'csrf-csrf' ) . doubleCsrf ;
2023-08-29 23:10:40 +02:00
const express = require ( 'express' ) ;
const compression = require ( 'compression' ) ;
2023-08-29 23:23:53 +02:00
const cookieParser = require ( 'cookie-parser' ) ;
2023-08-29 23:10:40 +02:00
const multer = require ( "multer" ) ;
2023-08-29 23:23:53 +02:00
const responseTime = require ( 'response-time' ) ;
2023-08-29 23:26:59 +02:00
// net related library imports
2023-09-10 18:02:58 +02:00
const net = require ( "net" ) ;
const dns = require ( 'dns' ) ;
2023-08-29 23:23:53 +02:00
const DeviceDetector = require ( "device-detector-js" ) ;
2023-08-29 23:34:41 +02:00
const fetch = require ( 'node-fetch' ) . default ;
2023-08-29 23:26:59 +02:00
const ipaddr = require ( 'ipaddr.js' ) ;
const ipMatching = require ( 'ip-matching' ) ;
const json5 = require ( 'json5' ) ;
2023-08-29 23:10:40 +02:00
2023-08-29 23:12:47 +02:00
// image processing related library imports
const encode = require ( 'png-chunks-encode' ) ;
2023-08-29 23:23:53 +02:00
const extract = require ( 'png-chunks-extract' ) ;
2023-08-29 23:12:47 +02:00
const jimp = require ( 'jimp' ) ;
const mime = require ( 'mime-types' ) ;
2023-08-29 23:23:53 +02:00
const PNGtext = require ( 'png-chunk-text' ) ;
2023-08-29 23:26:59 +02:00
2023-08-29 23:34:41 +02:00
// misc/other imports
const _ = require ( 'lodash' ) ;
2023-08-29 23:26:59 +02:00
2023-09-10 03:12:14 +02:00
// Unrestrict console logs display limit
util . inspect . defaultOptions . maxArrayLength = null ;
util . inspect . defaultOptions . maxStringLength = null ;
2023-08-29 23:26:59 +02:00
// local library imports
const basicAuthMiddleware = require ( './src/middleware/basicAuthMiddleware' ) ;
const characterCardParser = require ( './src/character-card-parser.js' ) ;
const contentManager = require ( './src/content-manager' ) ;
const statsHelpers = require ( './statsHelpers.js' ) ;
2023-09-16 15:39:07 +02:00
const { readSecret , migrateSecrets , SECRET _KEYS } = require ( './src/secrets' ) ;
2023-11-07 23:17:13 +01:00
const { delay , getVersion , deepMerge } = require ( './src/util' ) ;
2023-09-16 15:16:48 +02:00
const { invalidateThumbnail , ensureThumbnailCache } = require ( './src/thumbnails' ) ;
2023-11-09 00:03:54 +01:00
const { getTokenizerModel , getTiktokenTokenizer , loadTokenizers , TEXT _COMPLETION _MODELS , getSentencepiceTokenizer , sentencepieceTokenizers } = require ( './src/tokenizers' ) ;
2023-09-16 17:48:06 +02:00
const { convertClaudePrompt } = require ( './src/chat-completion' ) ;
2023-08-29 23:12:47 +02:00
2023-09-10 17:22:39 +02:00
// Work around a node v20.0.0, v20.1.0, and v20.2.0 bug. The issue was fixed in v20.3.0.
// https://github.com/nodejs/node/issues/47822#issuecomment-1564708870
// Safe to remove once support for Node v20 is dropped.
if ( process . versions && process . versions . node && process . versions . node . match ( /20\.[0-2]\.0/ ) ) {
// @ts-ignore
if ( net . setDefaultAutoSelectFamily ) net . setDefaultAutoSelectFamily ( false ) ;
}
2023-07-20 19:32:15 +02:00
2023-09-10 18:02:58 +02:00
// Set default DNS resolution order to IPv4 first
dns . setDefaultResultOrder ( 'ipv4first' ) ;
2023-07-20 19:32:15 +02:00
const cliArguments = yargs ( hideBin ( process . argv ) )
2023-11-18 01:09:42 +01:00
. option ( 'autorun' , {
type : 'boolean' ,
default : null ,
describe : 'Automatically launch SillyTavern in the browser.'
} )
2023-08-06 15:42:15 +02:00
. option ( 'disableCsrf' , {
type : 'boolean' ,
default : false ,
describe : 'Disables CSRF protection'
} ) . option ( 'ssl' , {
2023-07-20 19:32:15 +02:00
type : 'boolean' ,
default : false ,
describe : 'Enables SSL'
} ) . option ( 'certPath' , {
type : 'string' ,
default : 'certs/cert.pem' ,
describe : 'Path to your certificate file.'
} ) . option ( 'keyPath' , {
type : 'string' ,
default : 'certs/privkey.pem' ,
describe : 'Path to your private key file.'
2023-08-30 20:34:45 +02:00
} ) . parseSync ( ) ;
2023-07-20 19:32:15 +02:00
// change all relative paths
2023-08-30 17:41:38 +02:00
const directory = process [ 'pkg' ] ? path . dirname ( process . execPath ) : _ _dirname ;
console . log ( process [ 'pkg' ] ? 'Running from binary' : 'Running from source' ) ;
2023-07-20 19:32:15 +02:00
process . chdir ( directory ) ;
const app = express ( ) ;
app . use ( compression ( ) ) ;
app . use ( responseTime ( ) ) ;
// impoort from statsHelpers.js
const config = require ( path . join ( process . cwd ( ) , './config.conf' ) ) ;
const server _port = process . env . SILLY _TAVERN _PORT || config . port ;
const whitelistPath = path . join ( process . cwd ( ) , "./whitelist.txt" ) ;
let whitelist = config . whitelist ;
if ( fs . existsSync ( whitelistPath ) ) {
try {
let whitelistTxt = fs . readFileSync ( whitelistPath , 'utf-8' ) ;
whitelist = whitelistTxt . split ( "\n" ) . filter ( ip => ip ) . map ( ip => ip . trim ( ) ) ;
} catch ( e ) { }
}
const whitelistMode = config . whitelistMode ;
2023-11-24 09:15:39 +01:00
const autorun = config . autorun && cliArguments . autorun !== false && ! cliArguments . ssl ;
2023-07-20 19:32:15 +02:00
const enableExtensions = config . enableExtensions ;
const listen = config . listen ;
2023-08-31 18:44:58 +02:00
const API _OPENAI = "https://api.openai.com/v1" ;
const API _CLAUDE = "https://api.anthropic.com/v1" ;
// These should be gone and come from the frontend. But for now, they're here.
2023-07-20 19:32:15 +02:00
let api _server = "http://0.0.0.0:5000" ;
let main _api = "kobold" ;
let characters = { } ;
let response _dw _bg ;
2023-08-26 13:17:57 +02:00
let color = {
byNum : ( mess , fgNum ) => {
mess = mess || '' ;
fgNum = fgNum === undefined ? 31 : fgNum ;
return '\u001b[' + fgNum + 'm' + mess + '\u001b[39m' ;
} ,
black : ( mess ) => color . byNum ( mess , 30 ) ,
red : ( mess ) => color . byNum ( mess , 31 ) ,
green : ( mess ) => color . byNum ( mess , 32 ) ,
yellow : ( mess ) => color . byNum ( mess , 33 ) ,
blue : ( mess ) => color . byNum ( mess , 34 ) ,
magenta : ( mess ) => color . byNum ( mess , 35 ) ,
cyan : ( mess ) => color . byNum ( mess , 36 ) ,
white : ( mess ) => color . byNum ( mess , 37 )
} ;
2023-08-03 05:25:24 +02:00
2023-09-28 18:10:00 +02:00
function getMancerHeaders ( ) {
const apiKey = readSecret ( SECRET _KEYS . MANCER ) ;
2023-11-07 23:17:13 +01:00
return apiKey ? ( {
"X-API-KEY" : apiKey ,
"Authorization" : ` Bearer ${ apiKey } ` ,
} ) : { } ;
2023-09-28 18:10:00 +02:00
}
function getAphroditeHeaders ( ) {
const apiKey = readSecret ( SECRET _KEYS . APHRODITE ) ;
2023-11-07 23:17:13 +01:00
return apiKey ? ( {
"X-API-KEY" : apiKey ,
"Authorization" : ` Bearer ${ apiKey } ` ,
} ) : { } ;
2023-08-03 05:25:24 +02:00
}
2023-11-17 06:32:49 +01:00
function getTabbyHeaders ( ) {
const apiKey = readSecret ( SECRET _KEYS . TABBY )
return apiKey ? ( {
"x-api-key" : apiKey ,
"Authorization" : ` Bearer ${ apiKey } ` ,
} ) : { } ;
}
2023-08-31 06:09:31 +02:00
function getOverrideHeaders ( urlHost ) {
const overrideHeaders = config . requestOverrides ? . find ( ( e ) => e . hosts ? . includes ( urlHost ) ) ? . headers ;
if ( overrideHeaders && urlHost ) {
return overrideHeaders ;
} else {
return { } ;
}
}
2023-08-03 05:25:24 +02:00
2023-09-28 18:10:00 +02:00
/ * *
* Sets additional headers for the request .
* @ param { object } request Original request body
* @ param { object } args New request arguments
* @ param { string | null } server API server for new request
* /
function setAdditionalHeaders ( request , args , server ) {
let headers = { } ;
if ( request . body . use _mancer ) {
headers = getMancerHeaders ( ) ;
} else if ( request . body . use _aphrodite ) {
headers = getAphroditeHeaders ( ) ;
2023-11-17 06:32:49 +01:00
} else if ( request . body . use _tabby ) {
headers = getTabbyHeaders ( ) ;
2023-09-28 18:10:00 +02:00
} else {
2023-11-07 23:17:13 +01:00
headers = server ? getOverrideHeaders ( ( new URL ( server ) ) ? . host ) : { } ;
2023-09-28 18:10:00 +02:00
}
args . headers = Object . assign ( args . headers , headers ) ;
}
2023-09-06 19:59:59 +02:00
function humanizedISO8601DateTime ( date ) {
let baseDate = typeof date === 'number' ? new Date ( date ) : new Date ( ) ;
2023-07-20 19:32:15 +02:00
let humanYear = baseDate . getFullYear ( ) ;
let humanMonth = ( baseDate . getMonth ( ) + 1 ) ;
let humanDate = baseDate . getDate ( ) ;
let humanHour = ( baseDate . getHours ( ) < 10 ? '0' : '' ) + baseDate . getHours ( ) ;
let humanMinute = ( baseDate . getMinutes ( ) < 10 ? '0' : '' ) + baseDate . getMinutes ( ) ;
let humanSecond = ( baseDate . getSeconds ( ) < 10 ? '0' : '' ) + baseDate . getSeconds ( ) ;
let humanMillisecond = ( baseDate . getMilliseconds ( ) < 10 ? '0' : '' ) + baseDate . getMilliseconds ( ) ;
let HumanizedDateTime = ( humanYear + "-" + humanMonth + "-" + humanDate + " @" + humanHour + "h " + humanMinute + "m " + humanSecond + "s " + humanMillisecond + "ms" ) ;
return HumanizedDateTime ;
} ;
var charactersPath = 'public/characters/' ;
var chatsPath = 'public/chats/' ;
2023-09-08 12:57:27 +02:00
const SETTINGS _FILE = './public/settings.json' ;
2023-07-20 19:32:15 +02:00
const AVATAR _WIDTH = 400 ;
const AVATAR _HEIGHT = 600 ;
const jsonParser = express . json ( { limit : '100mb' } ) ;
const urlencodedParser = express . urlencoded ( { extended : true , limit : '100mb' } ) ;
2023-09-23 19:48:56 +02:00
const { DIRECTORIES , UPLOADS _PATH , PALM _SAFETY } = require ( './src/constants' ) ;
2023-11-07 23:17:13 +01:00
const { TavernCardValidator } = require ( "./src/validator/TavernCardValidator" ) ;
2023-07-20 19:32:15 +02:00
// CSRF Protection //
2023-08-06 15:42:15 +02:00
if ( cliArguments . disableCsrf === false ) {
const CSRF _SECRET = crypto . randomBytes ( 8 ) . toString ( 'hex' ) ;
const COOKIES _SECRET = crypto . randomBytes ( 8 ) . toString ( 'hex' ) ;
const { generateToken , doubleCsrfProtection } = doubleCsrf ( {
getSecret : ( ) => CSRF _SECRET ,
cookieName : "X-CSRF-Token" ,
cookieOptions : {
httpOnly : true ,
sameSite : "strict" ,
secure : false
} ,
size : 64 ,
getTokenFromRequest : ( req ) => req . headers [ "x-csrf-token" ]
} ) ;
2023-07-20 19:32:15 +02:00
2023-08-06 15:42:15 +02:00
app . get ( "/csrf-token" , ( req , res ) => {
res . json ( {
2023-08-30 21:10:51 +02:00
"token" : generateToken ( res , req )
2023-08-06 15:42:15 +02:00
} ) ;
2023-07-20 19:32:15 +02:00
} ) ;
2023-08-06 15:42:15 +02:00
app . use ( cookieParser ( COOKIES _SECRET ) ) ;
app . use ( doubleCsrfProtection ) ;
} else {
console . warn ( "\nCSRF protection is disabled. This will make your server vulnerable to CSRF attacks.\n" ) ;
app . get ( "/csrf-token" , ( req , res ) => {
res . json ( {
"token" : 'disabled'
} ) ;
} ) ;
}
2023-07-20 19:32:15 +02:00
// CORS Settings //
const CORS = cors ( {
origin : 'null' ,
methods : [ 'OPTIONS' ]
} ) ;
app . use ( CORS ) ;
if ( listen && config . basicAuthMode ) app . use ( basicAuthMiddleware ) ;
2023-08-26 13:17:57 +02:00
// IP Whitelist //
let knownIPs = new Set ( ) ;
function getIpFromRequest ( req ) {
2023-07-20 19:32:15 +02:00
let clientIp = req . connection . remoteAddress ;
let ip = ipaddr . parse ( clientIp ) ;
// Check if the IP address is IPv4-mapped IPv6 address
2023-08-30 18:14:46 +02:00
if ( ip . kind ( ) === 'ipv6' && ip instanceof ipaddr . IPv6 && ip . isIPv4MappedAddress ( ) ) {
2023-07-20 19:32:15 +02:00
const ipv4 = ip . toIPv4Address ( ) . toString ( ) ;
clientIp = ipv4 ;
} else {
clientIp = ip ;
clientIp = clientIp . toString ( ) ;
}
2023-08-26 13:17:57 +02:00
return clientIp ;
}
app . use ( function ( req , res , next ) {
const clientIp = getIpFromRequest ( req ) ;
if ( listen && ! knownIPs . has ( clientIp ) ) {
const userAgent = req . headers [ 'user-agent' ] ;
2023-08-26 15:05:42 +02:00
console . log ( color . yellow ( ` New connection from ${ clientIp } ; User Agent: ${ userAgent } \n ` ) ) ;
2023-08-26 13:17:57 +02:00
knownIPs . add ( clientIp ) ;
// Write access log
const timestamp = new Date ( ) . toISOString ( ) ;
const log = ` ${ timestamp } ${ clientIp } ${ userAgent } \n ` ;
fs . appendFile ( 'access.log' , log , ( err ) => {
if ( err ) {
console . error ( 'Failed to write access log:' , err ) ;
}
} ) ;
}
2023-07-20 19:32:15 +02:00
//clientIp = req.connection.remoteAddress.split(':').pop();
if ( whitelistMode === true && ! whitelist . some ( x => ipMatching . matches ( clientIp , ipMatching . getMatch ( x ) ) ) ) {
2023-08-26 13:17:57 +02:00
console . log ( color . red ( 'Forbidden: Connection attempt from ' + clientIp + '. If you are attempting to connect, please add your IP address in whitelist or disable whitelist mode in config.conf in root of SillyTavern folder.\n' ) ) ;
2023-07-20 19:32:15 +02:00
return res . status ( 403 ) . send ( '<b>Forbidden</b>: Connection attempt from <b>' + clientIp + '</b>. If you are attempting to connect, please add your IP address in whitelist or disable whitelist mode in config.conf in root of SillyTavern folder.' ) ;
}
next ( ) ;
} ) ;
2023-08-30 18:20:22 +02:00
app . use ( express . static ( process . cwd ( ) + "/public" , { } ) ) ;
2023-07-20 19:32:15 +02:00
app . use ( '/backgrounds' , ( req , res ) => {
const filePath = decodeURIComponent ( path . join ( process . cwd ( ) , 'public/backgrounds' , req . url . replace ( /%20/g , ' ' ) ) ) ;
fs . readFile ( filePath , ( err , data ) => {
if ( err ) {
res . status ( 404 ) . send ( 'File not found' ) ;
return ;
}
//res.contentType('image/jpeg');
res . send ( data ) ;
} ) ;
} ) ;
app . use ( '/characters' , ( req , res ) => {
const filePath = decodeURIComponent ( path . join ( process . cwd ( ) , charactersPath , req . url . replace ( /%20/g , ' ' ) ) ) ;
fs . readFile ( filePath , ( err , data ) => {
if ( err ) {
res . status ( 404 ) . send ( 'File not found' ) ;
return ;
}
res . send ( data ) ;
} ) ;
} ) ;
2023-08-19 16:43:56 +02:00
app . use ( multer ( { dest : UPLOADS _PATH , limits : { fieldSize : 10 * 1024 * 1024 } } ) . single ( "avatar" ) ) ;
2023-07-20 19:32:15 +02:00
app . get ( "/" , function ( request , response ) {
response . sendFile ( process . cwd ( ) + "/public/index.html" ) ;
} ) ;
app . get ( "/notes/*" , function ( request , response ) {
response . sendFile ( process . cwd ( ) + "/public" + request . url + ".html" ) ;
} ) ;
app . get ( '/deviceinfo' , function ( request , response ) {
const userAgent = request . header ( 'user-agent' ) ;
const deviceDetector = new DeviceDetector ( ) ;
2023-08-30 21:13:36 +02:00
const deviceInfo = deviceDetector . parse ( userAgent || "" ) ;
2023-07-20 19:32:15 +02:00
return response . send ( deviceInfo ) ;
} ) ;
2023-09-17 13:27:41 +02:00
app . get ( '/version' , async function ( _ , response ) {
const data = await getVersion ( ) ;
2023-07-20 19:32:15 +02:00
response . send ( data ) ;
} )
//**************Kobold api
2023-08-30 21:14:02 +02:00
app . post ( "/generate" , jsonParser , async function ( request , response _generate ) {
2023-07-20 19:32:15 +02:00
if ( ! request . body ) return response _generate . sendStatus ( 400 ) ;
const request _prompt = request . body . prompt ;
const controller = new AbortController ( ) ;
request . socket . removeAllListeners ( 'close' ) ;
request . socket . on ( 'close' , async function ( ) {
if ( request . body . can _abort && ! response _generate . writableEnded ) {
try {
console . log ( 'Aborting Kobold generation...' ) ;
// send abort signal to koboldcpp
const abortResponse = await fetch ( ` ${ api _server } /extra/abort ` , {
method : 'POST' ,
} ) ;
if ( ! abortResponse . ok ) {
console . log ( 'Error sending abort request to Kobold:' , abortResponse . status ) ;
}
} catch ( error ) {
console . log ( error ) ;
}
}
controller . abort ( ) ;
} ) ;
let this _settings = {
prompt : request _prompt ,
use _story : false ,
use _memory : false ,
use _authors _note : false ,
use _world _info : false ,
max _context _length : request . body . max _context _length ,
2023-09-14 17:20:12 +02:00
max _length : request . body . max _length ,
2023-07-20 19:32:15 +02:00
} ;
if ( request . body . gui _settings == false ) {
const sampler _order = [ request . body . s1 , request . body . s2 , request . body . s3 , request . body . s4 , request . body . s5 , request . body . s6 , request . body . s7 ] ;
this _settings = {
prompt : request _prompt ,
use _story : false ,
use _memory : false ,
use _authors _note : false ,
use _world _info : false ,
max _context _length : request . body . max _context _length ,
max _length : request . body . max _length ,
rep _pen : request . body . rep _pen ,
rep _pen _range : request . body . rep _pen _range ,
rep _pen _slope : request . body . rep _pen _slope ,
temperature : request . body . temperature ,
tfs : request . body . tfs ,
top _a : request . body . top _a ,
top _k : request . body . top _k ,
top _p : request . body . top _p ,
2023-11-02 06:53:57 +01:00
min _p : request . body . min _p ,
2023-07-20 19:32:15 +02:00
typical : request . body . typical ,
sampler _order : sampler _order ,
singleline : ! ! request . body . singleline ,
2023-09-01 00:58:32 +02:00
use _default _badwordsids : request . body . use _default _badwordsids ,
2023-09-01 00:04:58 +02:00
mirostat : request . body . mirostat ,
mirostat _eta : request . body . mirostat _eta ,
mirostat _tau : request . body . mirostat _tau ,
2023-09-21 14:21:59 +02:00
grammar : request . body . grammar ,
2023-10-26 20:22:00 +02:00
sampler _seed : request . body . sampler _seed ,
2023-07-20 19:32:15 +02:00
} ;
if ( ! ! request . body . stop _sequence ) {
this _settings [ 'stop_sequence' ] = request . body . stop _sequence ;
}
}
console . log ( this _settings ) ;
const args = {
body : JSON . stringify ( this _settings ) ,
2023-08-31 06:09:31 +02:00
headers : Object . assign (
{ "Content-Type" : "application/json" } ,
getOverrideHeaders ( ( new URL ( api _server ) ) ? . host )
) ,
2023-07-20 19:32:15 +02:00
signal : controller . signal ,
} ;
const MAX _RETRIES = 50 ;
const delayAmount = 2500 ;
for ( let i = 0 ; i < MAX _RETRIES ; i ++ ) {
try {
2023-09-03 17:37:52 +02:00
const url = request . body . streaming ? ` ${ api _server } /extra/generate/stream ` : ` ${ api _server } /v1/generate ` ;
const response = await fetch ( url , { method : 'POST' , timeout : 0 , ... args } ) ;
2023-07-20 19:32:15 +02:00
if ( request . body . streaming ) {
request . socket . on ( 'close' , function ( ) {
2023-09-03 17:37:52 +02:00
if ( response . body instanceof Readable ) response . body . destroy ( ) ; // Close the remote stream
2023-07-20 19:32:15 +02:00
response _generate . end ( ) ; // End the Express response
} ) ;
response . body . on ( 'end' , function ( ) {
console . log ( "Streaming request finished" ) ;
response _generate . end ( ) ;
} ) ;
// Pipe remote SSE stream to Express response
return response . body . pipe ( response _generate ) ;
} else {
if ( ! response . ok ) {
2023-08-01 14:22:51 +02:00
const errorText = await response . text ( ) ;
console . log ( ` Kobold returned error: ${ response . status } ${ response . statusText } ${ errorText } ` ) ;
try {
const errorJson = JSON . parse ( errorText ) ;
const message = errorJson ? . detail ? . msg || errorText ;
return response _generate . status ( 400 ) . send ( { error : { message } } ) ;
} catch {
return response _generate . status ( 400 ) . send ( { error : { message : errorText } } ) ;
}
2023-07-20 19:32:15 +02:00
}
const data = await response . json ( ) ;
2023-08-17 11:52:32 +02:00
console . log ( "Endpoint response:" , data ) ;
2023-07-20 19:32:15 +02:00
return response _generate . send ( data ) ;
}
} catch ( error ) {
// response
switch ( error ? . status ) {
case 403 :
case 503 : // retry in case of temporary service issue, possibly caused by a queue failure?
console . debug ( ` KoboldAI is busy. Retry attempt ${ i + 1 } of ${ MAX _RETRIES } ... ` ) ;
await delay ( delayAmount ) ;
break ;
default :
if ( 'status' in error ) {
console . log ( 'Status Code from Kobold:' , error . status ) ;
}
return response _generate . send ( { error : true } ) ;
}
}
}
console . log ( 'Max retries exceeded. Giving up.' ) ;
return response _generate . send ( { error : true } ) ;
} ) ;
2023-11-07 23:17:13 +01:00
//************** Text generation web UI
app . post ( "/api/textgenerationwebui/status" , jsonParser , async function ( request , response ) {
if ( ! request . body ) return response . sendStatus ( 400 ) ;
2023-09-28 18:10:00 +02:00
2023-11-07 23:17:13 +01:00
try {
if ( request . body . api _server . indexOf ( 'localhost' ) !== - 1 ) {
request . body . api _server = request . body . api _server . replace ( 'localhost' , '127.0.0.1' ) ;
}
2023-09-28 18:10:00 +02:00
2023-11-07 23:17:13 +01:00
console . log ( 'Trying to connect to API:' , request . body ) ;
2023-09-28 18:10:00 +02:00
2023-11-08 16:09:33 +01:00
// Convert to string + remove trailing slash + /v1 suffix
const baseUrl = String ( request . body . api _server ) . replace ( /\/$/ , '' ) . replace ( /\/v1$/ , '' ) ;
2023-09-28 18:10:00 +02:00
2023-11-07 23:17:13 +01:00
const args = {
headers : { "Content-Type" : "application/json" } ,
} ;
2023-09-28 18:10:00 +02:00
2023-11-07 23:17:13 +01:00
setAdditionalHeaders ( request , args , baseUrl ) ;
2023-09-28 18:10:00 +02:00
2023-11-08 09:13:28 +01:00
let url = baseUrl ;
2023-11-09 18:27:19 +01:00
let result = '' ;
2023-11-07 23:17:13 +01:00
2023-11-08 09:13:28 +01:00
if ( request . body . legacy _api ) {
url += "/v1/model" ;
2023-09-28 18:10:00 +02:00
}
2023-11-08 09:13:28 +01:00
else if ( request . body . use _ooba ) {
url += "/v1/models" ;
2023-11-07 23:17:13 +01:00
}
2023-11-08 09:13:28 +01:00
else if ( request . body . use _aphrodite ) {
url += "/v1/models" ;
}
else if ( request . body . use _mancer ) {
url += "/oai/v1/models" ;
2023-11-07 23:17:13 +01:00
}
2023-11-17 06:32:49 +01:00
else if ( request . body . use _tabby ) {
url += "/v1/model/list"
}
2023-11-19 16:14:53 +01:00
else if ( request . body . use _koboldcpp ) {
url += "/v1/models" ;
}
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
const modelsReply = await fetch ( url , args ) ;
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
if ( ! modelsReply . ok ) {
console . log ( 'Models endpoint is offline.' ) ;
2023-11-08 22:20:55 +01:00
return response . status ( 400 ) ;
2023-11-07 23:17:13 +01:00
}
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
const data = await modelsReply . json ( ) ;
2023-08-30 21:19:34 +02:00
2023-11-08 09:13:28 +01:00
if ( request . body . legacy _api ) {
console . log ( 'Legacy API response:' , data ) ;
return response . send ( { result : data ? . result } ) ;
}
2023-11-07 23:17:13 +01:00
if ( ! Array . isArray ( data . data ) ) {
console . log ( 'Models response is not an array.' )
2023-11-08 22:20:55 +01:00
return response . status ( 400 ) ;
2023-09-28 18:10:00 +02:00
}
2023-11-07 23:17:13 +01:00
const modelIds = data . data . map ( x => x . id ) ;
console . log ( 'Models available:' , modelIds ) ;
2023-07-20 19:32:15 +02:00
2023-11-09 18:27:19 +01:00
// Set result to the first model ID
result = modelIds [ 0 ] || 'Valid' ;
2023-11-17 20:51:44 +01:00
if ( request . body . use _ooba ) {
2023-11-09 18:27:19 +01:00
try {
2023-11-17 20:51:44 +01:00
const modelInfoUrl = baseUrl + "/v1/internal/model/info" ;
2023-11-09 18:27:19 +01:00
const modelInfoReply = await fetch ( modelInfoUrl , args ) ;
if ( modelInfoReply . ok ) {
const modelInfo = await modelInfoReply . json ( ) ;
2023-11-17 21:01:13 +01:00
console . log ( 'Ooba model info:' , modelInfo ) ;
2023-11-09 18:27:19 +01:00
2023-11-17 20:51:44 +01:00
const modelName = modelInfo ? . model _name ;
2023-11-09 18:27:19 +01:00
result = modelName || result ;
}
} catch ( error ) {
2023-11-17 20:51:44 +01:00
console . error ( ` Failed to get Ooba model info: ${ error } ` ) ;
}
}
if ( request . body . use _tabby ) {
try {
const modelInfoUrl = baseUrl + "/v1/model" ;
const modelInfoReply = await fetch ( modelInfoUrl , args ) ;
if ( modelInfoReply . ok ) {
const modelInfo = await modelInfoReply . json ( ) ;
2023-11-17 21:01:13 +01:00
console . log ( 'Tabby model info:' , modelInfo ) ;
2023-11-17 20:51:44 +01:00
const modelName = modelInfo ? . id ;
result = modelName || result ;
2023-11-23 06:09:58 +01:00
} else {
// TabbyAPI returns an error 400 if a model isn't loaded
result = "None"
2023-11-17 20:51:44 +01:00
}
} catch ( error ) {
console . error ( ` Failed to get TabbyAPI model info: ${ error } ` ) ;
2023-11-09 18:27:19 +01:00
}
}
2023-11-08 01:52:03 +01:00
return response . send ( { result , data : data . data } ) ;
2023-11-07 23:17:13 +01:00
} catch ( error ) {
console . error ( error ) ;
return response . status ( 500 ) ;
}
} ) ;
2023-10-08 22:42:28 +02:00
2023-11-07 23:17:13 +01:00
app . post ( "/api/textgenerationwebui/generate" , jsonParser , async function ( request , response _generate ) {
if ( ! request . body ) return response _generate . sendStatus ( 400 ) ;
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
try {
if ( request . body . api _server . indexOf ( 'localhost' ) !== - 1 ) {
request . body . api _server = request . body . api _server . replace ( 'localhost' , '127.0.0.1' ) ;
}
2023-09-28 18:10:00 +02:00
2023-11-07 23:17:13 +01:00
const baseUrl = request . body . api _server ;
console . log ( request . body ) ;
2023-09-28 18:10:00 +02:00
2023-11-07 23:17:13 +01:00
const controller = new AbortController ( ) ;
request . socket . removeAllListeners ( 'close' ) ;
request . socket . on ( 'close' , function ( ) {
controller . abort ( ) ;
} ) ;
2023-09-28 18:10:00 +02:00
2023-11-08 16:09:33 +01:00
// Convert to string + remove trailing slash + /v1 suffix
let url = String ( baseUrl ) . replace ( /\/$/ , '' ) . replace ( /\/v1$/ , '' ) ;
2023-08-31 06:09:31 +02:00
2023-11-08 09:13:28 +01:00
if ( request . body . legacy _api ) {
url += "/v1/generate" ;
2023-11-07 23:17:13 +01:00
}
2023-11-19 16:14:53 +01:00
else if ( request . body . use _aphrodite || request . body . use _ooba || request . body . use _tabby || request . body . use _koboldcpp ) {
2023-11-08 09:13:28 +01:00
url += "/v1/completions" ;
}
else if ( request . body . use _mancer ) {
url += "/oai/v1/completions" ;
2023-11-07 23:17:13 +01:00
}
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
const args = {
method : 'POST' ,
body : JSON . stringify ( request . body ) ,
headers : { "Content-Type" : "application/json" } ,
signal : controller . signal ,
timeout : 0 ,
} ;
2023-08-19 14:58:17 +02:00
2023-11-07 23:17:13 +01:00
setAdditionalHeaders ( request , args , baseUrl ) ;
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
if ( request . body . stream ) {
const completionsStream = await fetch ( url , args ) ;
// Pipe remote SSE stream to Express response
completionsStream . body . pipe ( response _generate ) ;
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
request . socket . on ( 'close' , function ( ) {
if ( completionsStream . body instanceof Readable ) completionsStream . body . destroy ( ) ; // Close the remote stream
response _generate . end ( ) ; // End the Express response
} ) ;
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
completionsStream . body . on ( 'end' , function ( ) {
console . log ( "Streaming request finished" ) ;
response _generate . end ( ) ;
} ) ;
}
else {
const completionsReply = await fetch ( url , args ) ;
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
if ( completionsReply . ok ) {
const data = await completionsReply . json ( ) ;
console . log ( "Endpoint response:" , data ) ;
2023-11-08 09:13:28 +01:00
// Wrap legacy response to OAI completions format
if ( request . body . legacy _api ) {
const text = data ? . results [ 0 ] ? . text ;
data [ 'choices' ] = [ { text } ] ;
}
2023-11-07 23:17:13 +01:00
return response _generate . send ( data ) ;
} else {
const text = await completionsReply . text ( ) ;
const errorBody = { error : true , status : completionsReply . status , response : text } ;
2023-07-20 19:32:15 +02:00
2023-11-07 23:17:13 +01:00
if ( ! response _generate . headersSent ) {
return response _generate . send ( errorBody ) ;
2023-07-20 19:32:15 +02:00
}
2023-11-07 23:17:13 +01:00
return response _generate . end ( ) ;
2023-07-20 19:32:15 +02:00
}
}
2023-11-07 23:17:13 +01:00
} catch ( error ) {
let value = { error : true , status : error ? . status , response : error ? . statusText } ;
console . log ( "Endpoint error:" , error ) ;
2023-08-03 05:25:24 +02:00
2023-11-07 23:17:13 +01:00
if ( ! response _generate . headersSent ) {
return response _generate . send ( value ) ;
2023-07-20 19:32:15 +02:00
}
2023-11-07 23:17:13 +01:00
return response _generate . end ( ) ;
2023-07-20 19:32:15 +02:00
}
} ) ;
app . post ( "/savechat" , jsonParser , function ( request , response ) {
try {
var dir _name = String ( request . body . avatar _url ) . replace ( '.png' , '' ) ;
let chat _data = request . body . chat ;
let jsonlData = chat _data . map ( JSON . stringify ) . join ( '\n' ) ;
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( ` ${ chatsPath + sanitize ( dir _name ) } / ${ sanitize ( String ( request . body . file _name ) ) } .jsonl ` , jsonlData , 'utf8' ) ;
2023-10-24 21:09:55 +02:00
backupChat ( dir _name , jsonlData )
2023-07-20 19:32:15 +02:00
return response . send ( { result : "ok" } ) ;
} catch ( error ) {
response . send ( error ) ;
return console . log ( error ) ;
}
} ) ;
app . post ( "/getchat" , jsonParser , function ( request , response ) {
try {
const dirName = String ( request . body . avatar _url ) . replace ( '.png' , '' ) ;
const chatDirExists = fs . existsSync ( chatsPath + dirName ) ;
//if no chat dir for the character is found, make one with the character name
if ( ! chatDirExists ) {
fs . mkdirSync ( chatsPath + dirName ) ;
return response . send ( { } ) ;
}
if ( ! request . body . file _name ) {
return response . send ( { } ) ;
}
const fileName = ` ${ chatsPath + dirName } / ${ sanitize ( String ( request . body . file _name ) ) } .jsonl ` ;
const chatFileExists = fs . existsSync ( fileName ) ;
if ( ! chatFileExists ) {
return response . send ( { } ) ;
}
const data = fs . readFileSync ( fileName , 'utf8' ) ;
const lines = data . split ( '\n' ) ;
// Iterate through the array of strings and parse each line as JSON
2023-10-21 14:04:36 +02:00
const jsonData = lines . map ( ( l ) => { try { return JSON . parse ( l ) ; } catch ( _ ) { } } ) . filter ( x => x ) ;
2023-07-20 19:32:15 +02:00
return response . send ( jsonData ) ;
} catch ( error ) {
console . error ( error ) ;
return response . send ( { } ) ;
}
} ) ;
2023-11-08 17:16:47 +01:00
// Only called for kobold
2023-08-26 20:56:41 +02:00
app . post ( "/getstatus" , jsonParser , async function ( request , response ) {
if ( ! request . body ) return response . sendStatus ( 400 ) ;
2023-07-20 19:32:15 +02:00
api _server = request . body . api _server ;
main _api = request . body . main _api ;
if ( api _server . indexOf ( 'localhost' ) != - 1 ) {
api _server = api _server . replace ( 'localhost' , '127.0.0.1' ) ;
}
2023-08-26 20:56:41 +02:00
const args = {
2023-07-20 19:32:15 +02:00
headers : { "Content-Type" : "application/json" }
} ;
2023-08-03 05:25:24 +02:00
2023-09-28 18:10:00 +02:00
setAdditionalHeaders ( request , args , api _server ) ;
2023-08-03 05:25:24 +02:00
2023-08-26 20:56:41 +02:00
const url = api _server + "/v1/model" ;
2023-07-20 19:32:15 +02:00
let version = '' ;
let koboldVersion = { } ;
2023-08-26 20:56:41 +02:00
2023-07-20 19:32:15 +02:00
if ( main _api == "kobold" ) {
try {
2023-09-01 00:30:33 +02:00
version = ( await fetchJSON ( api _server + "/v1/info/version" ) ) . result
2023-07-20 19:32:15 +02:00
}
catch {
version = '0.0.0' ;
}
try {
2023-09-01 00:30:33 +02:00
koboldVersion = ( await fetchJSON ( api _server + "/extra/version" ) ) ;
2023-07-20 19:32:15 +02:00
}
catch {
koboldVersion = {
result : 'Kobold' ,
version : '0.0' ,
} ;
}
}
2023-08-26 20:56:41 +02:00
try {
2023-09-01 00:30:33 +02:00
let data = await fetchJSON ( url , args ) ;
2023-08-26 20:56:41 +02:00
if ( ! data || typeof data !== 'object' ) {
2023-07-20 19:32:15 +02:00
data = { } ;
}
2023-08-26 20:56:41 +02:00
if ( data . result == "ReadOnly" ) {
2023-07-20 19:32:15 +02:00
data . result = "no_connection" ;
}
2023-08-26 20:56:41 +02:00
data . version = version ;
data . koboldVersion = koboldVersion ;
return response . send ( data ) ;
} catch ( error ) {
console . log ( error ) ;
return response . send ( { result : "no_connection" } ) ;
}
2023-07-20 19:32:15 +02:00
} ) ;
function tryParse ( str ) {
try {
return json5 . parse ( str ) ;
} catch {
return undefined ;
}
}
function convertToV2 ( char ) {
// Simulate incoming data from frontend form
const result = charaFormatData ( {
json _data : JSON . stringify ( char ) ,
ch _name : char . name ,
description : char . description ,
personality : char . personality ,
scenario : char . scenario ,
first _mes : char . first _mes ,
mes _example : char . mes _example ,
creator _notes : char . creatorcomment ,
talkativeness : char . talkativeness ,
fav : char . fav ,
creator : char . creator ,
tags : char . tags ,
2023-10-04 21:13:56 +02:00
depth _prompt _prompt : char . depth _prompt _prompt ,
depth _prompt _response : char . depth _prompt _response ,
2023-07-20 19:32:15 +02:00
} ) ;
result . chat = char . chat ? ? humanizedISO8601DateTime ( ) ;
2023-09-03 17:52:04 +02:00
result . create _date = char . create _date ? ? humanizedISO8601DateTime ( ) ;
2023-07-20 19:32:15 +02:00
return result ;
}
function unsetFavFlag ( char ) {
_ . set ( char , 'fav' , false ) ;
_ . set ( char , 'data.extensions.fav' , false ) ;
}
function readFromV2 ( char ) {
if ( _ . isUndefined ( char . data ) ) {
2023-10-15 08:08:45 +02:00
console . warn ( ` Char ${ char [ 'name' ] } has Spec v2 data missing ` ) ;
2023-07-20 19:32:15 +02:00
return char ;
}
const fieldMappings = {
name : 'name' ,
description : 'description' ,
personality : 'personality' ,
scenario : 'scenario' ,
first _mes : 'first_mes' ,
mes _example : 'mes_example' ,
talkativeness : 'extensions.talkativeness' ,
fav : 'extensions.fav' ,
tags : 'tags' ,
} ;
_ . forEach ( fieldMappings , ( v2Path , charField ) => {
//console.log(`Migrating field: ${charField} from ${v2Path}`);
const v2Value = _ . get ( char . data , v2Path ) ;
if ( _ . isUndefined ( v2Value ) ) {
let defaultValue = undefined ;
// Backfill default values for missing ST extension fields
if ( v2Path === 'extensions.talkativeness' ) {
defaultValue = 0.5 ;
}
if ( v2Path === 'extensions.fav' ) {
defaultValue = false ;
}
if ( ! _ . isUndefined ( defaultValue ) ) {
//console.debug(`Spec v2 extension data missing for field: ${charField}, using default value: ${defaultValue}`);
char [ charField ] = defaultValue ;
} else {
2023-10-15 05:41:23 +02:00
console . debug ( ` Char ${ char [ 'name' ] } has Spec v2 data missing for unknown field: ${ charField } ` ) ;
2023-07-20 19:32:15 +02:00
return ;
}
}
if ( ! _ . isUndefined ( char [ charField ] ) && ! _ . isUndefined ( v2Value ) && String ( char [ charField ] ) !== String ( v2Value ) ) {
2023-10-15 05:41:23 +02:00
console . debug ( ` Char ${ char [ 'name' ] } has Spec v2 data mismatch with Spec v1 for field: ${ charField } ` , char [ charField ] , v2Value ) ;
2023-07-20 19:32:15 +02:00
}
char [ charField ] = v2Value ;
} ) ;
char [ 'chat' ] = char [ 'chat' ] ? ? humanizedISO8601DateTime ( ) ;
return char ;
}
//***************** Main functions
function charaFormatData ( data ) {
// This is supposed to save all the foreign keys that ST doesn't care about
const char = tryParse ( data . json _data ) || { } ;
2023-08-30 21:38:10 +02:00
// Checks if data.alternate_greetings is an array, a string, or neither, and acts accordingly. (expected to be an array of strings)
2023-08-30 22:03:01 +02:00
const getAlternateGreetings = data => {
if ( Array . isArray ( data . alternate _greetings ) ) return data . alternate _greetings
if ( typeof data . alternate _greetings === 'string' ) return [ data . alternate _greetings ]
2023-08-30 21:38:10 +02:00
return [ ]
2023-08-30 22:03:01 +02:00
}
2023-07-20 19:32:15 +02:00
// Spec V1 fields
_ . set ( char , 'name' , data . ch _name ) ;
_ . set ( char , 'description' , data . description || '' ) ;
_ . set ( char , 'personality' , data . personality || '' ) ;
_ . set ( char , 'scenario' , data . scenario || '' ) ;
_ . set ( char , 'first_mes' , data . first _mes || '' ) ;
_ . set ( char , 'mes_example' , data . mes _example || '' ) ;
// Old ST extension fields (for backward compatibility, will be deprecated)
_ . set ( char , 'creatorcomment' , data . creator _notes ) ;
_ . set ( char , 'avatar' , 'none' ) ;
_ . set ( char , 'chat' , data . ch _name + ' - ' + humanizedISO8601DateTime ( ) ) ;
_ . set ( char , 'talkativeness' , data . talkativeness ) ;
_ . set ( char , 'fav' , data . fav == 'true' ) ;
// Spec V2 fields
_ . set ( char , 'spec' , 'chara_card_v2' ) ;
_ . set ( char , 'spec_version' , '2.0' ) ;
_ . set ( char , 'data.name' , data . ch _name ) ;
_ . set ( char , 'data.description' , data . description || '' ) ;
_ . set ( char , 'data.personality' , data . personality || '' ) ;
_ . set ( char , 'data.scenario' , data . scenario || '' ) ;
_ . set ( char , 'data.first_mes' , data . first _mes || '' ) ;
_ . set ( char , 'data.mes_example' , data . mes _example || '' ) ;
// New V2 fields
_ . set ( char , 'data.creator_notes' , data . creator _notes || '' ) ;
_ . set ( char , 'data.system_prompt' , data . system _prompt || '' ) ;
_ . set ( char , 'data.post_history_instructions' , data . post _history _instructions || '' ) ;
_ . set ( char , 'data.tags' , typeof data . tags == 'string' ? ( data . tags . split ( ',' ) . map ( x => x . trim ( ) ) . filter ( x => x ) ) : data . tags || [ ] ) ;
_ . set ( char , 'data.creator' , data . creator || '' ) ;
_ . set ( char , 'data.character_version' , data . character _version || '' ) ;
_ . set ( char , 'data.alternate_greetings' , getAlternateGreetings ( data ) ) ;
// ST extension fields to V2 object
_ . set ( char , 'data.extensions.talkativeness' , data . talkativeness ) ;
_ . set ( char , 'data.extensions.fav' , data . fav == 'true' ) ;
_ . set ( char , 'data.extensions.world' , data . world || '' ) ;
2023-10-04 21:13:56 +02:00
// Spec extension: depth prompt
const depth _default = 4 ;
const depth _value = ! isNaN ( Number ( data . depth _prompt _depth ) ) ? Number ( data . depth _prompt _depth ) : depth _default ;
_ . set ( char , 'data.extensions.depth_prompt.prompt' , data . depth _prompt _prompt ? ? '' ) ;
_ . set ( char , 'data.extensions.depth_prompt.depth' , depth _value ) ;
2023-07-20 19:32:15 +02:00
//_.set(char, 'data.extensions.create_date', humanizedISO8601DateTime());
//_.set(char, 'data.extensions.avatar', 'none');
//_.set(char, 'data.extensions.chat', data.ch_name + ' - ' + humanizedISO8601DateTime());
if ( data . world ) {
try {
const file = readWorldInfoFile ( data . world ) ;
// File was imported - save it to the character book
if ( file && file . originalData ) {
_ . set ( char , 'data.character_book' , file . originalData ) ;
}
// File was not imported - convert the world info to the character book
if ( file && file . entries ) {
_ . set ( char , 'data.character_book' , convertWorldInfoToCharacterBook ( data . world , file . entries ) ) ;
}
} catch {
console . debug ( ` Failed to read world info file: ${ data . world } . Character book will not be available. ` ) ;
}
}
return char ;
}
2023-08-19 16:43:56 +02:00
app . post ( "/createcharacter" , urlencodedParser , async function ( request , response ) {
2023-07-20 19:32:15 +02:00
if ( ! request . body ) return response . sendStatus ( 400 ) ;
request . body . ch _name = sanitize ( request . body . ch _name ) ;
const char = JSON . stringify ( charaFormatData ( request . body ) ) ;
const internalName = getPngName ( request . body . ch _name ) ;
const avatarName = ` ${ internalName } .png ` ;
const defaultAvatar = './public/img/ai4.png' ;
2023-09-16 16:28:28 +02:00
const chatsPath = DIRECTORIES . chats + internalName ; //path.join(chatsPath, internalName);
2023-07-20 19:32:15 +02:00
if ( ! fs . existsSync ( chatsPath ) ) fs . mkdirSync ( chatsPath ) ;
if ( ! request . file ) {
charaWrite ( defaultAvatar , char , internalName , response , avatarName ) ;
} else {
const crop = tryParse ( request . query . crop ) ;
2023-08-19 16:43:56 +02:00
const uploadPath = path . join ( UPLOADS _PATH , request . file . filename ) ;
await charaWrite ( uploadPath , char , internalName , response , avatarName , crop ) ;
fs . unlinkSync ( uploadPath ) ;
2023-07-20 19:32:15 +02:00
}
} ) ;
app . post ( '/renamechat' , jsonParser , async function ( request , response ) {
if ( ! request . body || ! request . body . original _file || ! request . body . renamed _file ) {
return response . sendStatus ( 400 ) ;
}
const pathToFolder = request . body . is _group
2023-09-16 16:28:28 +02:00
? DIRECTORIES . groupChats
: path . join ( DIRECTORIES . chats , String ( request . body . avatar _url ) . replace ( '.png' , '' ) ) ;
2023-07-20 19:32:15 +02:00
const pathToOriginalFile = path . join ( pathToFolder , request . body . original _file ) ;
const pathToRenamedFile = path . join ( pathToFolder , request . body . renamed _file ) ;
console . log ( 'Old chat name' , pathToOriginalFile ) ;
console . log ( 'New chat name' , pathToRenamedFile ) ;
if ( ! fs . existsSync ( pathToOriginalFile ) || fs . existsSync ( pathToRenamedFile ) ) {
console . log ( 'Either Source or Destination files are not available' ) ;
return response . status ( 400 ) . send ( { error : true } ) ;
}
console . log ( 'Successfully renamed.' ) ;
fs . renameSync ( pathToOriginalFile , pathToRenamedFile ) ;
return response . send ( { ok : true } ) ;
} ) ;
app . post ( "/renamecharacter" , jsonParser , async function ( request , response ) {
if ( ! request . body . avatar _url || ! request . body . new _name ) {
return response . sendStatus ( 400 ) ;
}
const oldAvatarName = request . body . avatar _url ;
const newName = sanitize ( request . body . new _name ) ;
const oldInternalName = path . parse ( request . body . avatar _url ) . name ;
const newInternalName = getPngName ( newName ) ;
const newAvatarName = ` ${ newInternalName } .png ` ;
const oldAvatarPath = path . join ( charactersPath , oldAvatarName ) ;
const oldChatsPath = path . join ( chatsPath , oldInternalName ) ;
const newChatsPath = path . join ( chatsPath , newInternalName ) ;
try {
// Read old file, replace name int it
const rawOldData = await charaRead ( oldAvatarPath ) ;
2023-09-15 13:56:15 +02:00
if ( rawOldData === undefined ) throw new Error ( "Failed to read character file" ) ;
2023-08-30 23:21:29 +02:00
2023-07-20 19:32:15 +02:00
const oldData = getCharaCardV2 ( json5 . parse ( rawOldData ) ) ;
_ . set ( oldData , 'data.name' , newName ) ;
_ . set ( oldData , 'name' , newName ) ;
const newData = JSON . stringify ( oldData ) ;
// Write data to new location
await charaWrite ( oldAvatarPath , newData , newInternalName ) ;
// Rename chats folder
if ( fs . existsSync ( oldChatsPath ) && ! fs . existsSync ( newChatsPath ) ) {
fs . renameSync ( oldChatsPath , newChatsPath ) ;
}
// Remove the old character file
fs . rmSync ( oldAvatarPath ) ;
// Return new avatar name to ST
return response . send ( { 'avatar' : newAvatarName } ) ;
}
catch ( err ) {
console . error ( err ) ;
return response . sendStatus ( 500 ) ;
}
} ) ;
app . post ( "/editcharacter" , urlencodedParser , async function ( request , response ) {
if ( ! request . body ) {
console . error ( 'Error: no response body detected' ) ;
response . status ( 400 ) . send ( 'Error: no response body detected' ) ;
return ;
}
if ( request . body . ch _name === '' || request . body . ch _name === undefined || request . body . ch _name === '.' ) {
console . error ( 'Error: invalid name.' ) ;
response . status ( 400 ) . send ( 'Error: invalid name.' ) ;
return ;
}
let char = charaFormatData ( request . body ) ;
char . chat = request . body . chat ;
char . create _date = request . body . create _date ;
char = JSON . stringify ( char ) ;
let target _img = ( request . body . avatar _url ) . replace ( '.png' , '' ) ;
try {
if ( ! request . file ) {
const avatarPath = path . join ( charactersPath , request . body . avatar _url ) ;
await charaWrite ( avatarPath , char , target _img , response , 'Character saved' ) ;
} else {
const crop = tryParse ( request . query . crop ) ;
2023-08-19 16:43:56 +02:00
const newAvatarPath = path . join ( UPLOADS _PATH , request . file . filename ) ;
2023-07-20 19:32:15 +02:00
invalidateThumbnail ( 'avatar' , request . body . avatar _url ) ;
await charaWrite ( newAvatarPath , char , target _img , response , 'Character saved' , crop ) ;
2023-08-19 16:43:56 +02:00
fs . unlinkSync ( newAvatarPath ) ;
2023-07-20 19:32:15 +02:00
}
}
catch {
console . error ( 'An error occured, character edit invalidated.' ) ;
}
} ) ;
/ * *
* Handle a POST request to edit a character attribute .
*
* This function reads the character data from a file , updates the specified attribute ,
* and writes the updated data back to the file .
*
* @ param { Object } request - The HTTP request object .
* @ param { Object } response - The HTTP response object .
* @ returns { void }
* /
app . post ( "/editcharacterattribute" , jsonParser , async function ( request , response ) {
console . log ( request . body ) ;
if ( ! request . body ) {
console . error ( 'Error: no response body detected' ) ;
response . status ( 400 ) . send ( 'Error: no response body detected' ) ;
return ;
}
if ( request . body . ch _name === '' || request . body . ch _name === undefined || request . body . ch _name === '.' ) {
console . error ( 'Error: invalid name.' ) ;
response . status ( 400 ) . send ( 'Error: invalid name.' ) ;
return ;
}
try {
const avatarPath = path . join ( charactersPath , request . body . avatar _url ) ;
2023-08-30 21:58:43 +02:00
let charJSON = await charaRead ( avatarPath ) ;
if ( typeof charJSON !== 'string' ) throw new Error ( "Failed to read character file" ) ;
let char = JSON . parse ( charJSON )
//check if the field exists
if ( char [ request . body . field ] === undefined && char . data [ request . body . field ] === undefined ) {
console . error ( 'Error: invalid field.' ) ;
response . status ( 400 ) . send ( 'Error: invalid field.' ) ;
return ;
}
char [ request . body . field ] = request . body . value ;
char . data [ request . body . field ] = request . body . value ;
let newCharJSON = JSON . stringify ( char ) ;
await charaWrite ( avatarPath , newCharJSON , ( request . body . avatar _url ) . replace ( '.png' , '' ) , response , 'Character saved' ) ;
} catch ( err ) {
console . error ( 'An error occured, character edit invalidated.' , err ) ;
2023-07-20 19:32:15 +02:00
}
} ) ;
2023-10-21 15:12:09 +02:00
/ * *
* Handle a POST request to edit character properties .
*
* Merges the request body with the selected character and
* validates the result against TavernCard V2 specification .
*
* @ param { Object } request - The HTTP request object .
* @ param { Object } response - The HTTP response object .
*
* @ returns { void }
* * /
app . post ( "/v2/editcharacterattribute" , jsonParser , async function ( request , response ) {
const update = request . body ;
const avatarPath = path . join ( charactersPath , update . avatar ) ;
try {
2023-11-07 23:17:13 +01:00
let character = JSON . parse ( await charaRead ( avatarPath ) ) ;
2023-10-21 15:12:09 +02:00
character = deepMerge ( character , update ) ;
const validator = new TavernCardValidator ( character ) ;
2023-11-05 16:14:59 +01:00
2023-11-05 16:44:31 +01:00
//Accept either V1 or V2.
if ( validator . validate ( ) ) {
2023-10-21 15:12:09 +02:00
await charaWrite (
avatarPath ,
JSON . stringify ( character ) ,
( update . avatar ) . replace ( '.png' , '' ) ,
response ,
'Character saved'
) ;
} else {
2023-11-05 16:44:31 +01:00
console . log ( validator . lastValidationError )
2023-11-07 23:17:13 +01:00
response . status ( 400 ) . send ( { message : ` Validation failed for ${ character . name } ` , error : validator . lastValidationError } ) ;
2023-10-21 15:12:09 +02:00
}
} catch ( exception ) {
2023-11-07 23:17:13 +01:00
response . status ( 500 ) . send ( { message : 'Unexpected error while saving character.' , error : exception . toString ( ) } ) ;
2023-10-21 15:12:09 +02:00
}
} ) ;
2023-07-24 21:05:27 +02:00
app . post ( "/deletecharacter" , jsonParser , async function ( request , response ) {
2023-07-20 19:32:15 +02:00
if ( ! request . body || ! request . body . avatar _url ) {
return response . sendStatus ( 400 ) ;
}
if ( request . body . avatar _url !== sanitize ( request . body . avatar _url ) ) {
console . error ( 'Malicious filename prevented' ) ;
return response . sendStatus ( 403 ) ;
}
const avatarPath = charactersPath + request . body . avatar _url ;
if ( ! fs . existsSync ( avatarPath ) ) {
return response . sendStatus ( 400 ) ;
}
fs . rmSync ( avatarPath ) ;
invalidateThumbnail ( 'avatar' , request . body . avatar _url ) ;
let dir _name = ( request . body . avatar _url . replace ( '.png' , '' ) ) ;
if ( ! dir _name . length ) {
console . error ( 'Malicious dirname prevented' ) ;
return response . sendStatus ( 403 ) ;
}
2023-08-04 13:41:00 +02:00
if ( request . body . delete _chats == true ) {
2023-07-20 19:32:15 +02:00
try {
await fs . promises . rm ( path . join ( chatsPath , sanitize ( dir _name ) ) , { recursive : true , force : true } )
} catch ( err ) {
console . error ( err ) ;
return response . sendStatus ( 500 ) ;
}
}
return response . sendStatus ( 200 ) ;
} ) ;
2023-08-30 21:49:07 +02:00
/ * *
2023-08-30 23:21:29 +02:00
* @ param { express . Response | undefined } response
2023-08-30 21:49:07 +02:00
* @ param { { file _name : string } | string } mes
* /
2023-07-20 19:32:15 +02:00
async function charaWrite ( img _url , data , target _img , response = undefined , mes = 'ok' , crop = undefined ) {
try {
// Read the image, resize, and save it as a PNG into the buffer
const image = await tryReadImage ( img _url , crop ) ;
// Get the chunks
const chunks = extract ( image ) ;
2023-08-31 18:44:58 +02:00
const tEXtChunks = chunks . filter ( chunk => chunk . name === 'tEXt' ) ;
2023-07-20 19:32:15 +02:00
// Remove all existing tEXt chunks
for ( let tEXtChunk of tEXtChunks ) {
chunks . splice ( chunks . indexOf ( tEXtChunk ) , 1 ) ;
}
// Add new chunks before the IEND chunk
const base64EncodedData = Buffer . from ( data , 'utf8' ) . toString ( 'base64' ) ;
chunks . splice ( - 1 , 0 , PNGtext . encode ( 'chara' , base64EncodedData ) ) ;
//chunks.splice(-1, 0, text.encode('lorem', 'ipsum'));
2023-08-31 18:44:58 +02:00
writeFileAtomicSync ( charactersPath + target _img + '.png' , Buffer . from ( encode ( chunks ) ) ) ;
2023-07-20 19:32:15 +02:00
if ( response !== undefined ) response . send ( mes ) ;
return true ;
} catch ( err ) {
console . log ( err ) ;
if ( response !== undefined ) response . status ( 500 ) . send ( err ) ;
return false ;
}
}
async function tryReadImage ( img _url , crop ) {
try {
let rawImg = await jimp . read ( img _url ) ;
let final _width = rawImg . bitmap . width , final _height = rawImg . bitmap . height
// Apply crop if defined
if ( typeof crop == 'object' && [ crop . x , crop . y , crop . width , crop . height ] . every ( x => typeof x === 'number' ) ) {
rawImg = rawImg . crop ( crop . x , crop . y , crop . width , crop . height ) ;
// Apply standard resize if requested
if ( crop . want _resize ) {
final _width = AVATAR _WIDTH
final _height = AVATAR _HEIGHT
2023-09-03 00:39:28 +02:00
} else {
final _width = crop . width ;
final _height = crop . height ;
2023-07-20 19:32:15 +02:00
}
}
const image = await rawImg . cover ( final _width , final _height ) . getBufferAsync ( jimp . MIME _PNG ) ;
return image ;
}
// If it's an unsupported type of image (APNG) - just read the file as buffer
catch {
return fs . readFileSync ( img _url ) ;
}
}
async function charaRead ( img _url , input _format ) {
return characterCardParser . parse ( img _url , input _format ) ;
}
/ * *
* calculateChatSize - Calculates the total chat size for a given character .
*
* @ param { string } charDir The directory where the chats are stored .
2023-08-31 18:44:58 +02:00
* @ return { { chatSize : number , dateLastChat : number } } The total chat size .
2023-07-20 19:32:15 +02:00
* /
const calculateChatSize = ( charDir ) => {
let chatSize = 0 ;
let dateLastChat = 0 ;
if ( fs . existsSync ( charDir ) ) {
const chats = fs . readdirSync ( charDir ) ;
if ( Array . isArray ( chats ) && chats . length ) {
for ( const chat of chats ) {
const chatStat = fs . statSync ( path . join ( charDir , chat ) ) ;
chatSize += chatStat . size ;
dateLastChat = Math . max ( dateLastChat , chatStat . mtimeMs ) ;
}
}
}
return { chatSize , dateLastChat } ;
}
2023-07-27 22:45:25 +02:00
// Calculate the total string length of the data object
const calculateDataSize = ( data ) => {
return typeof data === 'object' ? Object . values ( data ) . reduce ( ( acc , val ) => acc + new String ( val ) . length , 0 ) : 0 ;
}
2023-07-20 19:32:15 +02:00
/ * *
* processCharacter - Process a given character , read its data and calculate its statistics .
*
* @ param { string } item The name of the character .
* @ param { number } i The index of the character in the characters list .
* @ return { Promise } A Promise that resolves when the character processing is done .
* /
const processCharacter = async ( item , i ) => {
try {
const img _data = await charaRead ( charactersPath + item ) ;
2023-09-15 13:56:15 +02:00
if ( img _data === undefined ) throw new Error ( "Failed to read character file" ) ;
2023-08-31 18:44:58 +02:00
2023-07-20 19:32:15 +02:00
let jsonObject = getCharaCardV2 ( json5 . parse ( img _data ) ) ;
jsonObject . avatar = item ;
characters [ i ] = jsonObject ;
characters [ i ] [ 'json_data' ] = img _data ;
const charStat = fs . statSync ( path . join ( charactersPath , item ) ) ;
characters [ i ] [ 'date_added' ] = charStat . birthtimeMs ;
2023-09-03 17:52:04 +02:00
characters [ i ] [ 'create_date' ] = jsonObject [ 'create_date' ] || humanizedISO8601DateTime ( charStat . birthtimeMs ) ;
2023-07-20 19:32:15 +02:00
const char _dir = path . join ( chatsPath , item . replace ( '.png' , '' ) ) ;
const { chatSize , dateLastChat } = calculateChatSize ( char _dir ) ;
characters [ i ] [ 'chat_size' ] = chatSize ;
characters [ i ] [ 'date_last_chat' ] = dateLastChat ;
2023-07-27 22:45:25 +02:00
characters [ i ] [ 'data_size' ] = calculateDataSize ( jsonObject ? . data ) ;
2023-07-20 19:32:15 +02:00
}
catch ( err ) {
characters [ i ] = {
date _added : 0 ,
date _last _chat : 0 ,
chat _size : 0
} ;
console . log ( ` Could not process character: ${ item } ` ) ;
if ( err instanceof SyntaxError ) {
console . log ( "String [" + i + "] is not valid JSON!" ) ;
} else {
console . log ( "An unexpected error occurred: " , err ) ;
}
}
}
/ * *
* HTTP POST endpoint for the "/getcharacters" route .
*
* This endpoint is responsible for reading character files from the ` charactersPath ` directory ,
* parsing character data , calculating stats for each character and responding with the data .
* Stats are calculated only on the first run , on subsequent runs the stats are fetched from
* the ` charStats ` variable .
* The stats are calculated by the ` calculateStats ` function .
* The characters are processed by the ` processCharacter ` function .
*
* @ param { object } request The HTTP request object .
* @ param { object } response The HTTP response object .
* @ return { undefined } Does not return a value .
* /
app . post ( "/getcharacters" , jsonParser , function ( request , response ) {
fs . readdir ( charactersPath , async ( err , files ) => {
if ( err ) {
console . error ( err ) ;
return ;
}
const pngFiles = files . filter ( file => file . endsWith ( '.png' ) ) ;
characters = { } ;
let processingPromises = pngFiles . map ( ( file , index ) => processCharacter ( file , index ) ) ;
await Promise . all ( processingPromises ) ; performance . mark ( 'B' ) ;
2023-10-09 18:09:33 +02:00
// Filter out invalid/broken characters
characters = Object . values ( characters ) . filter ( x => x ? . name ) . reduce ( ( acc , val , index ) => {
acc [ index ] = val ;
return acc ;
} , { } ) ;
2023-07-20 19:32:15 +02:00
response . send ( JSON . stringify ( characters ) ) ;
} ) ;
} ) ;
2023-08-19 14:58:17 +02:00
app . post ( "/getonecharacter" , jsonParser , async function ( request , response ) {
if ( ! request . body ) return response . sendStatus ( 400 ) ;
const item = request . body . avatar _url ;
const filePath = path . join ( charactersPath , item ) ;
2023-07-20 19:32:15 +02:00
2023-08-19 14:58:17 +02:00
if ( ! fs . existsSync ( filePath ) ) {
return response . sendStatus ( 404 ) ;
}
characters = { } ;
await processCharacter ( item , 0 ) ;
2023-07-20 19:32:15 +02:00
2023-08-19 14:58:17 +02:00
return response . send ( characters [ 0 ] ) ;
} ) ;
2023-07-20 19:32:15 +02:00
/ * *
* Handle a POST request to get the stats object
*
* This function returns the stats object that was calculated by the ` calculateStats ` function .
*
*
* @ param { Object } request - The HTTP request object .
* @ param { Object } response - The HTTP response object .
* @ returns { void }
* /
app . post ( "/getstats" , jsonParser , function ( request , response ) {
response . send ( JSON . stringify ( statsHelpers . getCharStats ( ) ) ) ;
} ) ;
2023-09-21 23:34:09 +02:00
/ * *
* Endpoint : POST / recreatestats
2023-09-23 19:48:56 +02:00
*
2023-09-21 23:34:09 +02:00
* Triggers the recreation of statistics from chat files .
* - If successful : returns a 200 OK status .
* - On failure : returns a 500 Internal Server Error status .
2023-09-23 19:48:56 +02:00
*
2023-09-21 23:34:09 +02:00
* @ param { Object } request - Express request object .
* @ param { Object } response - Express response object .
* /
app . post ( "/recreatestats" , jsonParser , function ( request , response ) {
if ( statsHelpers . loadStatsFile ( DIRECTORIES . chats , DIRECTORIES . characters , true ) ) {
return response . sendStatus ( 200 ) ;
} else {
return response . sendStatus ( 500 ) ;
}
} ) ;
2023-07-20 19:32:15 +02:00
/ * *
* Handle a POST request to update the stats object
*
* This function updates the stats object with the data from the request body .
*
* @ param { Object } request - The HTTP request object .
* @ param { Object } response - The HTTP response object .
* @ returns { void }
*
* /
app . post ( "/updatestats" , jsonParser , function ( request , response ) {
if ( ! request . body ) return response . sendStatus ( 400 ) ;
statsHelpers . setCharStats ( request . body ) ;
return response . sendStatus ( 200 ) ;
} ) ;
app . post ( "/getbackgrounds" , jsonParser , function ( request , response ) {
var images = getImages ( "public/backgrounds" ) ;
response . send ( JSON . stringify ( images ) ) ;
} ) ;
app . post ( "/getuseravatars" , jsonParser , function ( request , response ) {
var images = getImages ( "public/User Avatars" ) ;
response . send ( JSON . stringify ( images ) ) ;
} ) ;
app . post ( '/deleteuseravatar' , jsonParser , function ( request , response ) {
if ( ! request . body ) return response . sendStatus ( 400 ) ;
if ( request . body . avatar !== sanitize ( request . body . avatar ) ) {
console . error ( 'Malicious avatar name prevented' ) ;
return response . sendStatus ( 403 ) ;
}
2023-09-16 16:28:28 +02:00
const fileName = path . join ( DIRECTORIES . avatars , sanitize ( request . body . avatar ) ) ;
2023-07-20 19:32:15 +02:00
if ( fs . existsSync ( fileName ) ) {
fs . rmSync ( fileName ) ;
return response . send ( { result : 'ok' } ) ;
}
return response . sendStatus ( 404 ) ;
} ) ;
app . post ( "/setbackground" , jsonParser , function ( request , response ) {
2023-08-18 11:11:18 +02:00
try {
const bg = ` #bg1 {background-image: url('../backgrounds/ ${ request . body . bg } ');} ` ;
writeFileAtomicSync ( 'public/css/bg_load.css' , bg , 'utf8' ) ;
response . send ( { result : 'ok' } ) ;
} catch ( err ) {
console . log ( err ) ;
response . send ( err ) ;
}
2023-07-20 19:32:15 +02:00
} ) ;
2023-08-18 11:11:18 +02:00
2023-07-20 19:32:15 +02:00
app . post ( "/delbackground" , jsonParser , function ( request , response ) {
if ( ! request . body ) return response . sendStatus ( 400 ) ;
if ( request . body . bg !== sanitize ( request . body . bg ) ) {
console . error ( 'Malicious bg name prevented' ) ;
return response . sendStatus ( 403 ) ;
}
const fileName = path . join ( 'public/backgrounds/' , sanitize ( request . body . bg ) ) ;
if ( ! fs . existsSync ( fileName ) ) {
console . log ( 'BG file not found' ) ;
return response . sendStatus ( 400 ) ;
}
fs . rmSync ( fileName ) ;
invalidateThumbnail ( 'bg' , request . body . bg ) ;
return response . send ( 'ok' ) ;
} ) ;
app . post ( "/delchat" , jsonParser , function ( request , response ) {
console . log ( '/delchat entered' ) ;
if ( ! request . body ) {
console . log ( 'no request body seen' ) ;
return response . sendStatus ( 400 ) ;
}
if ( request . body . chatfile !== sanitize ( request . body . chatfile ) ) {
console . error ( 'Malicious chat name prevented' ) ;
return response . sendStatus ( 403 ) ;
}
const dirName = String ( request . body . avatar _url ) . replace ( '.png' , '' ) ;
const fileName = ` ${ chatsPath + dirName } / ${ sanitize ( String ( request . body . chatfile ) ) } ` ;
const chatFileExists = fs . existsSync ( fileName ) ;
if ( ! chatFileExists ) {
console . log ( ` Chat file not found ' ${ fileName } ' ` ) ;
return response . sendStatus ( 400 ) ;
} else {
console . log ( 'found the chat file: ' + fileName ) ;
/* fs.unlinkSync(fileName); */
fs . rmSync ( fileName ) ;
console . log ( 'deleted chat file: ' + fileName ) ;
}
return response . send ( 'ok' ) ;
} ) ;
app . post ( '/renamebackground' , jsonParser , function ( request , response ) {
if ( ! request . body ) return response . sendStatus ( 400 ) ;
2023-10-21 22:33:17 +02:00
const oldFileName = path . join ( DIRECTORIES . backgrounds , sanitize ( request . body . old _bg ) ) ;
const newFileName = path . join ( DIRECTORIES . backgrounds , sanitize ( request . body . new _bg ) ) ;
2023-07-20 19:32:15 +02:00
if ( ! fs . existsSync ( oldFileName ) ) {
console . log ( 'BG file not found' ) ;
return response . sendStatus ( 400 ) ;
}
if ( fs . existsSync ( newFileName ) ) {
console . log ( 'New BG file already exists' ) ;
return response . sendStatus ( 400 ) ;
}
fs . renameSync ( oldFileName , newFileName ) ;
invalidateThumbnail ( 'bg' , request . body . old _bg ) ;
return response . send ( 'ok' ) ;
} ) ;
app . post ( "/downloadbackground" , urlencodedParser , function ( request , response ) {
response _dw _bg = response ;
if ( ! request . body || ! request . file ) return response . sendStatus ( 400 ) ;
2023-08-19 16:43:56 +02:00
const img _path = path . join ( UPLOADS _PATH , request . file . filename ) ;
2023-07-20 19:32:15 +02:00
const filename = request . file . originalname ;
try {
fs . copyFileSync ( img _path , path . join ( 'public/backgrounds/' , filename ) ) ;
invalidateThumbnail ( 'bg' , filename ) ;
response _dw _bg . send ( filename ) ;
2023-08-19 16:43:56 +02:00
fs . unlinkSync ( img _path ) ;
2023-07-20 19:32:15 +02:00
} catch ( err ) {
console . error ( err ) ;
response _dw _bg . sendStatus ( 500 ) ;
}
} ) ;
app . post ( "/savesettings" , jsonParser , function ( request , response ) {
2023-08-18 11:11:18 +02:00
try {
writeFileAtomicSync ( 'public/settings.json' , JSON . stringify ( request . body , null , 4 ) , 'utf8' ) ;
response . send ( { result : "ok" } ) ;
} catch ( err ) {
console . log ( err ) ;
response . send ( err ) ;
}
2023-07-20 19:32:15 +02:00
} ) ;
function getCharaCardV2 ( jsonObject ) {
if ( jsonObject . spec === undefined ) {
jsonObject = convertToV2 ( jsonObject ) ;
} else {
jsonObject = readFromV2 ( jsonObject ) ;
}
return jsonObject ;
}
function readAndParseFromDirectory ( directoryPath , fileExtension = '.json' ) {
const files = fs
. readdirSync ( directoryPath )
. filter ( x => path . parse ( x ) . ext == fileExtension )
. sort ( ) ;
const parsedFiles = [ ] ;
files . forEach ( item => {
try {
const file = fs . readFileSync ( path . join ( directoryPath , item ) , 'utf-8' ) ;
parsedFiles . push ( fileExtension == '.json' ? json5 . parse ( file ) : file ) ;
}
catch {
// skip
}
} ) ;
return parsedFiles ;
}
function sortByModifiedDate ( directory ) {
2023-08-31 18:44:58 +02:00
return ( a , b ) => + ( new Date ( fs . statSync ( ` ${ directory } / ${ b } ` ) . mtime ) ) - + ( new Date ( fs . statSync ( ` ${ directory } / ${ a } ` ) . mtime ) ) ;
2023-07-20 19:32:15 +02:00
}
function sortByName ( _ ) {
return ( a , b ) => a . localeCompare ( b ) ;
}
function readPresetsFromDirectory ( directoryPath , options = { } ) {
const {
sortFunction ,
removeFileExtension = false
} = options ;
const files = fs . readdirSync ( directoryPath ) . sort ( sortFunction ) ;
const fileContents = [ ] ;
const fileNames = [ ] ;
files . forEach ( item => {
try {
const file = fs . readFileSync ( path . join ( directoryPath , item ) , 'utf8' ) ;
json5 . parse ( file ) ;
fileContents . push ( file ) ;
fileNames . push ( removeFileExtension ? item . replace ( /\.[^/.]+$/ , '' ) : item ) ;
} catch {
// skip
console . log ( ` ${ item } is not a valid JSON ` ) ;
}
} ) ;
return { fileContents , fileNames } ;
}
// Wintermute's code
app . post ( '/getsettings' , jsonParser , ( request , response ) => {
2023-08-31 18:44:58 +02:00
let settings
try {
settings = fs . readFileSync ( 'public/settings.json' , 'utf8' ) ;
} catch ( e ) {
return response . sendStatus ( 500 ) ;
}
2023-07-20 19:32:15 +02:00
// NovelAI Settings
const { fileContents : novelai _settings , fileNames : novelai _setting _names }
2023-09-16 16:28:28 +02:00
= readPresetsFromDirectory ( DIRECTORIES . novelAI _Settings , {
sortFunction : sortByName ( DIRECTORIES . novelAI _Settings ) ,
2023-07-20 19:32:15 +02:00
removeFileExtension : true
} ) ;
// OpenAI Settings
const { fileContents : openai _settings , fileNames : openai _setting _names }
2023-09-16 16:28:28 +02:00
= readPresetsFromDirectory ( DIRECTORIES . openAI _Settings , {
2023-11-24 09:15:39 +01:00
sortFunction : sortByName ( DIRECTORIES . openAI _Settings ) , removeFileExtension : true
2023-07-20 19:32:15 +02:00
} ) ;
// TextGenerationWebUI Settings
const { fileContents : textgenerationwebui _presets , fileNames : textgenerationwebui _preset _names }
2023-09-16 16:28:28 +02:00
= readPresetsFromDirectory ( DIRECTORIES . textGen _Settings , {
sortFunction : sortByName ( DIRECTORIES . textGen _Settings ) , removeFileExtension : true
2023-07-20 19:32:15 +02:00
} ) ;
//Kobold
const { fileContents : koboldai _settings , fileNames : koboldai _setting _names }
2023-09-16 16:28:28 +02:00
= readPresetsFromDirectory ( DIRECTORIES . koboldAI _Settings , {
sortFunction : sortByName ( DIRECTORIES . koboldAI _Settings ) , removeFileExtension : true
2023-07-20 19:32:15 +02:00
} )
const worldFiles = fs
2023-09-16 16:28:28 +02:00
. readdirSync ( DIRECTORIES . worlds )
2023-07-20 19:32:15 +02:00
. filter ( file => path . extname ( file ) . toLowerCase ( ) === '.json' )
2023-08-31 18:44:58 +02:00
. sort ( ( a , b ) => a . localeCompare ( b ) ) ;
2023-07-20 19:32:15 +02:00
const world _names = worldFiles . map ( item => path . parse ( item ) . name ) ;
2023-09-16 16:28:28 +02:00
const themes = readAndParseFromDirectory ( DIRECTORIES . themes ) ;
const movingUIPresets = readAndParseFromDirectory ( DIRECTORIES . movingUI ) ;
const quickReplyPresets = readAndParseFromDirectory ( DIRECTORIES . quickreplies ) ;
2023-07-29 23:22:03 +02:00
2023-09-16 16:28:28 +02:00
const instruct = readAndParseFromDirectory ( DIRECTORIES . instruct ) ;
const context = readAndParseFromDirectory ( DIRECTORIES . context ) ;
2023-07-20 19:32:15 +02:00
response . send ( {
settings ,
koboldai _settings ,
koboldai _setting _names ,
world _names ,
novelai _settings ,
novelai _setting _names ,
openai _settings ,
openai _setting _names ,
textgenerationwebui _presets ,
textgenerationwebui _preset _names ,
themes ,
movingUIPresets ,
2023-07-29 23:22:03 +02:00
quickReplyPresets ,
2023-07-20 19:32:15 +02:00
instruct ,
context ,
enable _extensions : enableExtensions ,
} ) ;
} ) ;
app . post ( '/getworldinfo' , jsonParser , ( request , response ) => {
if ( ! request . body ? . name ) {
return response . sendStatus ( 400 ) ;
}
const file = readWorldInfoFile ( request . body . name ) ;
return response . send ( file ) ;
} ) ;
app . post ( '/deleteworldinfo' , jsonParser , ( request , response ) => {
if ( ! request . body ? . name ) {
return response . sendStatus ( 400 ) ;
}
const worldInfoName = request . body . name ;
const filename = sanitize ( ` ${ worldInfoName } .json ` ) ;
2023-09-16 16:28:28 +02:00
const pathToWorldInfo = path . join ( DIRECTORIES . worlds , filename ) ;
2023-07-20 19:32:15 +02:00
if ( ! fs . existsSync ( pathToWorldInfo ) ) {
throw new Error ( ` World info file ${ filename } doesn't exist. ` ) ;
}
fs . rmSync ( pathToWorldInfo ) ;
return response . sendStatus ( 200 ) ;
} ) ;
app . post ( '/savetheme' , jsonParser , ( request , response ) => {
if ( ! request . body || ! request . body . name ) {
return response . sendStatus ( 400 ) ;
}
2023-09-16 16:28:28 +02:00
const filename = path . join ( DIRECTORIES . themes , sanitize ( request . body . name ) + '.json' ) ;
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( filename , JSON . stringify ( request . body , null , 4 ) , 'utf8' ) ;
2023-07-20 19:32:15 +02:00
return response . sendStatus ( 200 ) ;
} ) ;
app . post ( '/savemovingui' , jsonParser , ( request , response ) => {
if ( ! request . body || ! request . body . name ) {
return response . sendStatus ( 400 ) ;
}
2023-09-16 16:28:28 +02:00
const filename = path . join ( DIRECTORIES . movingUI , sanitize ( request . body . name ) + '.json' ) ;
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( filename , JSON . stringify ( request . body , null , 4 ) , 'utf8' ) ;
2023-07-20 19:32:15 +02:00
return response . sendStatus ( 200 ) ;
} ) ;
2023-07-29 23:22:03 +02:00
app . post ( '/savequickreply' , jsonParser , ( request , response ) => {
if ( ! request . body || ! request . body . name ) {
return response . sendStatus ( 400 ) ;
}
2023-09-16 16:28:28 +02:00
const filename = path . join ( DIRECTORIES . quickreplies , sanitize ( request . body . name ) + '.json' ) ;
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( filename , JSON . stringify ( request . body , null , 4 ) , 'utf8' ) ;
2023-07-29 23:22:03 +02:00
return response . sendStatus ( 200 ) ;
} ) ;
2023-09-03 17:37:52 +02:00
/ * *
* @ param { string } name Name of World Info file
* @ param { object } entries Entries object
* /
2023-07-20 19:32:15 +02:00
function convertWorldInfoToCharacterBook ( name , entries ) {
2023-09-03 17:37:52 +02:00
/** @type {{ entries: object[]; name: string }} */
2023-07-20 19:32:15 +02:00
const result = { entries : [ ] , name } ;
for ( const index in entries ) {
const entry = entries [ index ] ;
const originalEntry = {
id : entry . uid ,
keys : entry . key ,
secondary _keys : entry . keysecondary ,
comment : entry . comment ,
content : entry . content ,
constant : entry . constant ,
selective : entry . selective ,
insertion _order : entry . order ,
enabled : ! entry . disable ,
position : entry . position == 0 ? 'before_char' : 'after_char' ,
extensions : {
position : entry . position ,
exclude _recursion : entry . excludeRecursion ,
display _index : entry . displayIndex ,
probability : entry . probability ? ? null ,
useProbability : entry . useProbability ? ? false ,
2023-09-25 19:11:16 +02:00
depth : entry . depth ? ? 4 ,
2023-10-28 11:28:03 +02:00
selectiveLogic : entry . selectiveLogic ? ? 0 ,
2023-09-25 19:11:16 +02:00
} ,
2023-07-20 19:32:15 +02:00
} ;
result . entries . push ( originalEntry ) ;
}
return result ;
}
function readWorldInfoFile ( worldInfoName ) {
2023-10-16 22:03:42 +02:00
const dummyObject = { entries : { } } ;
2023-07-20 19:32:15 +02:00
if ( ! worldInfoName ) {
2023-10-16 22:03:42 +02:00
return dummyObject ;
2023-07-20 19:32:15 +02:00
}
const filename = ` ${ worldInfoName } .json ` ;
2023-09-16 16:28:28 +02:00
const pathToWorldInfo = path . join ( DIRECTORIES . worlds , filename ) ;
2023-07-20 19:32:15 +02:00
if ( ! fs . existsSync ( pathToWorldInfo ) ) {
2023-10-16 22:03:42 +02:00
console . log ( ` World info file ${ filename } doesn't exist. ` ) ;
return dummyObject ;
2023-07-20 19:32:15 +02:00
}
const worldInfoText = fs . readFileSync ( pathToWorldInfo , 'utf8' ) ;
const worldInfo = json5 . parse ( worldInfoText ) ;
return worldInfo ;
}
function getImages ( path ) {
return fs
. readdirSync ( path )
. filter ( file => {
const type = mime . lookup ( file ) ;
return type && type . startsWith ( 'image/' ) ;
} )
. sort ( Intl . Collator ( ) . compare ) ;
}
2023-10-21 14:04:36 +02:00
app . post ( "/getallchatsofcharacter" , jsonParser , async function ( request , response ) {
2023-07-20 19:32:15 +02:00
if ( ! request . body ) return response . sendStatus ( 400 ) ;
2023-10-21 14:04:36 +02:00
const characterDirectory = ( request . body . avatar _url ) . replace ( '.png' , '' ) ;
2023-07-20 19:32:15 +02:00
2023-10-21 14:04:36 +02:00
try {
const chatsDirectory = path . join ( chatsPath , characterDirectory ) ;
const files = fs . readdirSync ( chatsDirectory ) ;
2023-07-20 19:32:15 +02:00
const jsonFiles = files . filter ( file => path . extname ( file ) === '.jsonl' ) ;
2023-10-21 14:04:36 +02:00
if ( jsonFiles . length === 0 ) {
2023-10-21 12:55:52 +02:00
response . send ( { error : true } ) ;
return ;
}
2023-07-20 19:32:15 +02:00
2023-10-21 12:55:52 +02:00
const jsonFilesPromise = jsonFiles . map ( ( file ) => {
return new Promise ( async ( res ) => {
2023-10-21 14:04:36 +02:00
const pathToFile = path . join ( chatsPath , characterDirectory , file ) ;
const fileStream = fs . createReadStream ( pathToFile ) ;
const stats = fs . statSync ( pathToFile ) ;
const fileSizeInKB = ` ${ ( stats . size / 1024 ) . toFixed ( 2 ) } kb ` ;
2023-07-20 19:32:15 +02:00
const rl = readline . createInterface ( {
input : fileStream ,
crlfDelay : Infinity
} ) ;
let lastLine ;
let itemCounter = 0 ;
rl . on ( 'line' , ( line ) => {
itemCounter ++ ;
lastLine = line ;
} ) ;
rl . on ( 'close' , ( ) => {
2023-10-21 12:55:52 +02:00
rl . close ( ) ;
2023-07-20 19:32:15 +02:00
if ( lastLine ) {
2023-10-21 14:04:36 +02:00
const jsonData = tryParse ( lastLine ) ;
if ( jsonData && ( jsonData . name || jsonData . character _name ) ) {
2023-10-21 12:55:52 +02:00
const chatData = { } ;
chatData [ 'file_name' ] = file ;
chatData [ 'file_size' ] = fileSizeInKB ;
chatData [ 'chat_items' ] = itemCounter - 1 ;
2023-10-21 14:04:36 +02:00
chatData [ 'mes' ] = jsonData [ 'mes' ] || '[The chat is empty]' ;
chatData [ 'last_mes' ] = jsonData [ 'send_date' ] || Date . now ( ) ;
2023-07-20 19:32:15 +02:00
2023-10-21 12:55:52 +02:00
res ( chatData ) ;
2023-08-08 16:56:13 +02:00
} else {
2023-10-21 14:04:36 +02:00
console . log ( 'Found an invalid or corrupted chat file:' , pathToFile ) ;
2023-10-21 12:55:52 +02:00
res ( { } ) ;
2023-07-20 19:32:15 +02:00
}
}
} ) ;
2023-10-21 12:55:52 +02:00
} ) ;
} ) ;
const chatData = await Promise . all ( jsonFilesPromise ) ;
2023-10-21 14:04:36 +02:00
const validFiles = chatData . filter ( i => i . file _name ) ;
2023-10-21 12:55:52 +02:00
2023-10-21 14:04:36 +02:00
return response . send ( validFiles ) ;
} catch ( error ) {
console . log ( error ) ;
return response . send ( { error : true } ) ;
}
2023-07-20 19:32:15 +02:00
} ) ;
function getPngName ( file ) {
let i = 1 ;
let base _name = file ;
while ( fs . existsSync ( charactersPath + file + '.png' ) ) {
file = base _name + i ;
i ++ ;
}
return file ;
}
app . post ( "/importcharacter" , urlencodedParser , async function ( request , response ) {
2023-08-31 18:44:58 +02:00
if ( ! request . body || request . file === undefined ) return response . sendStatus ( 400 ) ;
2023-07-20 19:32:15 +02:00
let png _name = '' ;
let filedata = request . file ;
2023-08-19 16:43:56 +02:00
let uploadPath = path . join ( UPLOADS _PATH , filedata . filename ) ;
2023-07-20 19:32:15 +02:00
var format = request . body . file _type ;
const defaultAvatarPath = './public/img/ai4.png' ;
2023-09-16 16:28:28 +02:00
const { importRisuSprites } = require ( './src/sprites' ) ;
2023-07-20 19:32:15 +02:00
//console.log(format);
if ( filedata ) {
if ( format == 'json' ) {
fs . readFile ( uploadPath , 'utf8' , async ( err , data ) => {
2023-08-19 16:50:16 +02:00
fs . unlinkSync ( uploadPath ) ;
2023-07-20 19:32:15 +02:00
if ( err ) {
console . log ( err ) ;
response . send ( { error : true } ) ;
}
let jsonData = json5 . parse ( data ) ;
if ( jsonData . spec !== undefined ) {
console . log ( 'importing from v2 json' ) ;
importRisuSprites ( jsonData ) ;
unsetFavFlag ( jsonData ) ;
jsonData = readFromV2 ( jsonData ) ;
2023-09-10 13:30:29 +02:00
jsonData [ "create_date" ] = humanizedISO8601DateTime ( ) ;
2023-07-20 19:32:15 +02:00
png _name = getPngName ( jsonData . data ? . name || jsonData . name ) ;
let char = JSON . stringify ( jsonData ) ;
charaWrite ( defaultAvatarPath , char , png _name , response , { file _name : png _name } ) ;
} else if ( jsonData . name !== undefined ) {
console . log ( 'importing from v1 json' ) ;
jsonData . name = sanitize ( jsonData . name ) ;
if ( jsonData . creator _notes ) {
jsonData . creator _notes = jsonData . creator _notes . replace ( "Creator's notes go here." , "" ) ;
}
png _name = getPngName ( jsonData . name ) ;
let char = {
"name" : jsonData . name ,
"description" : jsonData . description ? ? '' ,
"creatorcomment" : jsonData . creatorcomment ? ? jsonData . creator _notes ? ? '' ,
"personality" : jsonData . personality ? ? '' ,
"first_mes" : jsonData . first _mes ? ? '' ,
"avatar" : 'none' ,
"chat" : jsonData . name + " - " + humanizedISO8601DateTime ( ) ,
"mes_example" : jsonData . mes _example ? ? '' ,
"scenario" : jsonData . scenario ? ? '' ,
"create_date" : humanizedISO8601DateTime ( ) ,
"talkativeness" : jsonData . talkativeness ? ? 0.5 ,
"creator" : jsonData . creator ? ? '' ,
"tags" : jsonData . tags ? ? '' ,
} ;
char = convertToV2 ( char ) ;
2023-08-31 18:44:58 +02:00
let charJSON = JSON . stringify ( char ) ;
charaWrite ( defaultAvatarPath , charJSON , png _name , response , { file _name : png _name } ) ;
2023-07-20 19:32:15 +02:00
} else if ( jsonData . char _name !== undefined ) { //json Pygmalion notepad
console . log ( 'importing from gradio json' ) ;
jsonData . char _name = sanitize ( jsonData . char _name ) ;
if ( jsonData . creator _notes ) {
jsonData . creator _notes = jsonData . creator _notes . replace ( "Creator's notes go here." , "" ) ;
}
png _name = getPngName ( jsonData . char _name ) ;
let char = {
"name" : jsonData . char _name ,
"description" : jsonData . char _persona ? ? '' ,
"creatorcomment" : jsonData . creatorcomment ? ? jsonData . creator _notes ? ? '' ,
"personality" : '' ,
"first_mes" : jsonData . char _greeting ? ? '' ,
"avatar" : 'none' ,
"chat" : jsonData . name + " - " + humanizedISO8601DateTime ( ) ,
"mes_example" : jsonData . example _dialogue ? ? '' ,
"scenario" : jsonData . world _scenario ? ? '' ,
"create_date" : humanizedISO8601DateTime ( ) ,
"talkativeness" : jsonData . talkativeness ? ? 0.5 ,
"creator" : jsonData . creator ? ? '' ,
"tags" : jsonData . tags ? ? '' ,
} ;
char = convertToV2 ( char ) ;
2023-08-31 18:44:58 +02:00
let charJSON = JSON . stringify ( char ) ;
charaWrite ( defaultAvatarPath , charJSON , png _name , response , { file _name : png _name } ) ;
2023-07-20 19:32:15 +02:00
} else {
console . log ( 'Incorrect character format .json' ) ;
response . send ( { error : true } ) ;
}
} ) ;
} else {
try {
var img _data = await charaRead ( uploadPath , format ) ;
2023-09-15 13:56:15 +02:00
if ( img _data === undefined ) throw new Error ( 'Failed to read character data' ) ;
2023-08-31 18:44:58 +02:00
2023-07-20 19:32:15 +02:00
let jsonData = json5 . parse ( img _data ) ;
jsonData . name = sanitize ( jsonData . data ? . name || jsonData . name ) ;
png _name = getPngName ( jsonData . name ) ;
if ( jsonData . spec !== undefined ) {
console . log ( 'Found a v2 character file.' ) ;
importRisuSprites ( jsonData ) ;
unsetFavFlag ( jsonData ) ;
jsonData = readFromV2 ( jsonData ) ;
2023-09-03 17:37:52 +02:00
jsonData [ "create_date" ] = humanizedISO8601DateTime ( ) ;
const char = JSON . stringify ( jsonData ) ;
2023-08-19 16:50:16 +02:00
await charaWrite ( uploadPath , char , png _name , response , { file _name : png _name } ) ;
fs . unlinkSync ( uploadPath ) ;
2023-07-20 19:32:15 +02:00
} else if ( jsonData . name !== undefined ) {
console . log ( 'Found a v1 character file.' ) ;
if ( jsonData . creator _notes ) {
jsonData . creator _notes = jsonData . creator _notes . replace ( "Creator's notes go here." , "" ) ;
}
let char = {
"name" : jsonData . name ,
"description" : jsonData . description ? ? '' ,
"creatorcomment" : jsonData . creatorcomment ? ? jsonData . creator _notes ? ? '' ,
"personality" : jsonData . personality ? ? '' ,
"first_mes" : jsonData . first _mes ? ? '' ,
"avatar" : 'none' ,
"chat" : jsonData . name + " - " + humanizedISO8601DateTime ( ) ,
"mes_example" : jsonData . mes _example ? ? '' ,
"scenario" : jsonData . scenario ? ? '' ,
"create_date" : humanizedISO8601DateTime ( ) ,
"talkativeness" : jsonData . talkativeness ? ? 0.5 ,
"creator" : jsonData . creator ? ? '' ,
"tags" : jsonData . tags ? ? '' ,
} ;
char = convertToV2 ( char ) ;
2023-09-03 17:37:52 +02:00
const charJSON = JSON . stringify ( char ) ;
await charaWrite ( uploadPath , charJSON , png _name , response , { file _name : png _name } ) ;
2023-08-19 16:50:16 +02:00
fs . unlinkSync ( uploadPath ) ;
2023-07-20 19:32:15 +02:00
} else {
console . log ( 'Unknown character card format' ) ;
response . send ( { error : true } ) ;
}
} catch ( err ) {
console . log ( err ) ;
response . send ( { error : true } ) ;
}
}
}
} ) ;
app . post ( "/dupecharacter" , jsonParser , async function ( request , response ) {
try {
if ( ! request . body . avatar _url ) {
console . log ( "avatar URL not found in request body" ) ;
console . log ( request . body ) ;
return response . sendStatus ( 400 ) ;
}
2023-09-16 16:28:28 +02:00
let filename = path . join ( DIRECTORIES . characters , sanitize ( request . body . avatar _url ) ) ;
2023-07-20 19:32:15 +02:00
if ( ! fs . existsSync ( filename ) ) {
console . log ( 'file for dupe not found' ) ;
console . log ( filename ) ;
return response . sendStatus ( 404 ) ;
}
let suffix = 1 ;
let newFilename = filename ;
2023-09-03 14:18:23 +02:00
// If filename ends with a _number, increment the number
const nameParts = path . basename ( filename , path . extname ( filename ) ) . split ( '_' ) ;
const lastPart = nameParts [ nameParts . length - 1 ] ;
let baseName ;
if ( ! isNaN ( Number ( lastPart ) ) && nameParts . length > 1 ) {
suffix = parseInt ( lastPart ) + 1 ;
baseName = nameParts . slice ( 0 , - 1 ) . join ( "_" ) ; // construct baseName without suffix
} else {
baseName = nameParts . join ( "_" ) ; // original filename is completely the baseName
}
2023-09-16 16:28:28 +02:00
newFilename = path . join ( DIRECTORIES . characters , ` ${ baseName } _ ${ suffix } ${ path . extname ( filename ) } ` ) ;
2023-09-03 14:18:23 +02:00
2023-07-20 19:32:15 +02:00
while ( fs . existsSync ( newFilename ) ) {
let suffixStr = "_" + suffix ;
2023-09-16 16:28:28 +02:00
newFilename = path . join ( DIRECTORIES . characters , ` ${ baseName } ${ suffixStr } ${ path . extname ( filename ) } ` ) ;
2023-07-20 19:32:15 +02:00
suffix ++ ;
}
2023-09-03 14:18:23 +02:00
fs . copyFileSync ( filename , newFilename ) ;
console . log ( ` ${ filename } was copied to ${ newFilename } ` ) ;
response . sendStatus ( 200 ) ;
2023-07-20 19:32:15 +02:00
}
catch ( error ) {
console . error ( error ) ;
return response . send ( { error : true } ) ;
}
} ) ;
app . post ( "/exportchat" , jsonParser , async function ( request , response ) {
if ( ! request . body . file || ( ! request . body . avatar _url && request . body . is _group === false ) ) {
return response . sendStatus ( 400 ) ;
}
const pathToFolder = request . body . is _group
2023-09-16 16:28:28 +02:00
? DIRECTORIES . groupChats
: path . join ( DIRECTORIES . chats , String ( request . body . avatar _url ) . replace ( '.png' , '' ) ) ;
2023-07-20 19:32:15 +02:00
let filename = path . join ( pathToFolder , request . body . file ) ;
let exportfilename = request . body . exportfilename
if ( ! fs . existsSync ( filename ) ) {
const errorMessage = {
message : ` Could not find JSONL file to export. Source chat file: ${ filename } . `
}
console . log ( errorMessage . message ) ;
return response . status ( 404 ) . json ( errorMessage ) ;
}
try {
// Short path for JSONL files
if ( request . body . format == 'jsonl' ) {
try {
const rawFile = fs . readFileSync ( filename , 'utf8' ) ;
const successMessage = {
message : ` Chat saved to ${ exportfilename } ` ,
result : rawFile ,
}
console . log ( ` Chat exported as ${ exportfilename } ` ) ;
return response . status ( 200 ) . json ( successMessage ) ;
}
catch ( err ) {
console . error ( err ) ;
const errorMessage = {
message : ` Could not read JSONL file to export. Source chat file: ${ filename } . `
}
console . log ( errorMessage . message ) ;
return response . status ( 500 ) . json ( errorMessage ) ;
}
}
const readStream = fs . createReadStream ( filename ) ;
const rl = readline . createInterface ( {
input : readStream ,
} ) ;
let buffer = '' ;
rl . on ( 'line' , ( line ) => {
const data = JSON . parse ( line ) ;
if ( data . mes ) {
const name = data . name ;
const message = ( data ? . extra ? . display _text || data ? . mes || '' ) . replace ( /\r?\n/g , '\n' ) ;
buffer += ( ` ${ name } : ${ message } \n \n ` ) ;
}
} ) ;
rl . on ( 'close' , ( ) => {
const successMessage = {
message : ` Chat saved to ${ exportfilename } ` ,
result : buffer ,
}
console . log ( ` Chat exported as ${ exportfilename } ` ) ;
return response . status ( 200 ) . json ( successMessage ) ;
} ) ;
}
catch ( err ) {
console . log ( "chat export failed." )
console . log ( err ) ;
return response . sendStatus ( 400 ) ;
}
} )
app . post ( "/exportcharacter" , jsonParser , async function ( request , response ) {
if ( ! request . body . format || ! request . body . avatar _url ) {
return response . sendStatus ( 400 ) ;
}
2023-09-16 16:28:28 +02:00
let filename = path . join ( DIRECTORIES . characters , sanitize ( request . body . avatar _url ) ) ;
2023-07-20 19:32:15 +02:00
if ( ! fs . existsSync ( filename ) ) {
return response . sendStatus ( 404 ) ;
}
switch ( request . body . format ) {
case 'png' :
return response . sendFile ( filename , { root : process . cwd ( ) } ) ;
case 'json' : {
try {
let json = await charaRead ( filename ) ;
2023-09-15 13:56:15 +02:00
if ( json === undefined ) return response . sendStatus ( 400 ) ;
2023-07-20 19:32:15 +02:00
let jsonObject = getCharaCardV2 ( json5 . parse ( json ) ) ;
return response . type ( 'json' ) . send ( jsonObject )
}
catch {
return response . sendStatus ( 400 ) ;
}
}
}
return response . sendStatus ( 400 ) ;
} ) ;
app . post ( "/importgroupchat" , urlencodedParser , function ( request , response ) {
try {
const filedata = request . file ;
2023-09-03 17:37:52 +02:00
if ( ! filedata ) {
return response . sendStatus ( 400 ) ;
}
2023-07-20 19:32:15 +02:00
const chatname = humanizedISO8601DateTime ( ) ;
2023-08-19 16:43:56 +02:00
const pathToUpload = path . join ( UPLOADS _PATH , filedata . filename ) ;
2023-09-16 16:28:28 +02:00
const pathToNewFile = path . join ( DIRECTORIES . groupChats , ` ${ chatname } .jsonl ` ) ;
2023-08-19 16:43:56 +02:00
fs . copyFileSync ( pathToUpload , pathToNewFile ) ;
fs . unlinkSync ( pathToUpload ) ;
2023-07-20 19:32:15 +02:00
return response . send ( { res : chatname } ) ;
} catch ( error ) {
console . error ( error ) ;
return response . send ( { error : true } ) ;
}
} ) ;
app . post ( "/importchat" , urlencodedParser , function ( request , response ) {
if ( ! request . body ) return response . sendStatus ( 400 ) ;
var format = request . body . file _type ;
let filedata = request . file ;
let avatar _url = ( request . body . avatar _url ) . replace ( '.png' , '' ) ;
let ch _name = request . body . character _name ;
let user _name = request . body . user _name || 'You' ;
2023-09-03 17:37:52 +02:00
if ( ! filedata ) {
return response . sendStatus ( 400 ) ;
}
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
try {
const data = fs . readFileSync ( path . join ( UPLOADS _PATH , filedata . filename ) , 'utf8' ) ;
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
if ( format === 'json' ) {
const jsonData = json5 . parse ( data ) ;
if ( jsonData . histories !== undefined ) {
//console.log('/importchat confirms JSON histories are defined');
const chat = {
from ( history ) {
return [
{
user _name : user _name ,
character _name : ch _name ,
create _date : humanizedISO8601DateTime ( ) ,
} ,
... history . msgs . map (
( message ) => ( {
name : message . src . is _human ? user _name : ch _name ,
is _user : message . src . is _human ,
send _date : humanizedISO8601DateTime ( ) ,
mes : message . text ,
} )
) ] ;
2023-07-20 19:32:15 +02:00
}
2023-09-03 17:37:52 +02:00
}
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
const newChats = [ ] ;
( jsonData . histories . histories ? ? [ ] ) . forEach ( ( history ) => {
newChats . push ( chat . from ( history ) ) ;
} ) ;
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
const errors = [ ] ;
2023-08-18 11:11:18 +02:00
2023-09-03 17:37:52 +02:00
for ( const chat of newChats ) {
const filePath = ` ${ chatsPath + avatar _url } / ${ ch _name } - ${ humanizedISO8601DateTime ( ) } imported.jsonl ` ;
const fileContent = chat . map ( tryParse ) . filter ( x => x ) . join ( '\n' ) ;
2023-08-18 11:11:18 +02:00
2023-09-03 17:37:52 +02:00
try {
writeFileAtomicSync ( filePath , fileContent , 'utf8' ) ;
} catch ( err ) {
errors . push ( err ) ;
2023-08-18 11:11:18 +02:00
}
2023-09-03 17:37:52 +02:00
}
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
if ( 0 < errors . length ) {
response . send ( 'Errors occurred while writing character files. Errors: ' + JSON . stringify ( errors ) ) ;
}
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
response . send ( { res : true } ) ;
} else if ( Array . isArray ( jsonData . data _visible ) ) {
// oobabooga's format
/** @type {object[]} */
const chat = [ {
user _name : user _name ,
character _name : ch _name ,
create _date : humanizedISO8601DateTime ( ) ,
} ] ;
for ( const arr of jsonData . data _visible ) {
if ( arr [ 0 ] ) {
const userMessage = {
name : user _name ,
is _user : true ,
send _date : humanizedISO8601DateTime ( ) ,
mes : arr [ 0 ] ,
} ;
chat . push ( userMessage ) ;
}
if ( arr [ 1 ] ) {
const charMessage = {
name : ch _name ,
is _user : false ,
send _date : humanizedISO8601DateTime ( ) ,
mes : arr [ 1 ] ,
} ;
chat . push ( charMessage ) ;
2023-07-20 19:32:15 +02:00
}
2023-09-03 17:37:52 +02:00
}
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
const chatContent = chat . map ( obj => JSON . stringify ( obj ) ) . join ( '\n' ) ;
writeFileAtomicSync ( ` ${ chatsPath + avatar _url } / ${ ch _name } - ${ humanizedISO8601DateTime ( ) } imported.jsonl ` , chatContent , 'utf8' ) ;
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
response . send ( { res : true } ) ;
} else {
console . log ( 'Incorrect chat format .json' ) ;
return response . send ( { error : true } ) ;
}
2023-07-20 19:32:15 +02:00
}
2023-09-03 17:37:52 +02:00
2023-07-20 19:32:15 +02:00
if ( format === 'jsonl' ) {
2023-09-03 17:37:52 +02:00
const line = data . split ( '\n' ) [ 0 ] ;
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
let jsonData = json5 . parse ( line ) ;
2023-07-20 19:32:15 +02:00
2023-09-03 17:37:52 +02:00
if ( jsonData . user _name !== undefined || jsonData . name !== undefined ) {
fs . copyFileSync ( path . join ( UPLOADS _PATH , filedata . filename ) , ( ` ${ chatsPath + avatar _url } / ${ ch _name } - ${ humanizedISO8601DateTime ( ) } .jsonl ` ) ) ;
response . send ( { res : true } ) ;
} else {
console . log ( 'Incorrect chat format .jsonl' ) ;
return response . send ( { error : true } ) ;
}
2023-07-20 19:32:15 +02:00
}
2023-09-03 17:37:52 +02:00
} catch ( error ) {
console . error ( error ) ;
return response . send ( { error : true } ) ;
2023-07-20 19:32:15 +02:00
}
} ) ;
app . post ( '/importworldinfo' , urlencodedParser , ( request , response ) => {
if ( ! request . file ) return response . sendStatus ( 400 ) ;
const filename = ` ${ path . parse ( sanitize ( request . file . originalname ) ) . name } .json ` ;
let fileContents = null ;
if ( request . body . convertedData ) {
fileContents = request . body . convertedData ;
} else {
2023-08-19 16:43:56 +02:00
const pathToUpload = path . join ( UPLOADS _PATH , request . file . filename ) ;
2023-07-20 19:32:15 +02:00
fileContents = fs . readFileSync ( pathToUpload , 'utf8' ) ;
2023-08-19 16:43:56 +02:00
fs . unlinkSync ( pathToUpload ) ;
2023-07-20 19:32:15 +02:00
}
try {
const worldContent = json5 . parse ( fileContents ) ;
if ( ! ( 'entries' in worldContent ) ) {
throw new Error ( 'File must contain a world info entries list' ) ;
}
} catch ( err ) {
return response . status ( 400 ) . send ( 'Is not a valid world info file' ) ;
}
2023-09-16 16:28:28 +02:00
const pathToNewFile = path . join ( DIRECTORIES . worlds , filename ) ;
2023-07-20 19:32:15 +02:00
const worldName = path . parse ( pathToNewFile ) . name ;
if ( ! worldName ) {
return response . status ( 400 ) . send ( 'World file must have a name' ) ;
}
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( pathToNewFile , fileContents ) ;
2023-07-20 19:32:15 +02:00
return response . send ( { name : worldName } ) ;
} ) ;
app . post ( '/editworldinfo' , jsonParser , ( request , response ) => {
if ( ! request . body ) {
return response . sendStatus ( 400 ) ;
}
if ( ! request . body . name ) {
return response . status ( 400 ) . send ( 'World file must have a name' ) ;
}
try {
if ( ! ( 'entries' in request . body . data ) ) {
throw new Error ( 'World info must contain an entries list' ) ;
}
} catch ( err ) {
return response . status ( 400 ) . send ( 'Is not a valid world info file' ) ;
}
const filename = ` ${ sanitize ( request . body . name ) } .json ` ;
2023-09-16 16:28:28 +02:00
const pathToFile = path . join ( DIRECTORIES . worlds , filename ) ;
2023-07-20 19:32:15 +02:00
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( pathToFile , JSON . stringify ( request . body . data , null , 4 ) ) ;
2023-07-20 19:32:15 +02:00
return response . send ( { ok : true } ) ;
} ) ;
app . post ( '/uploaduseravatar' , urlencodedParser , async ( request , response ) => {
if ( ! request . file ) return response . sendStatus ( 400 ) ;
try {
2023-08-19 16:43:56 +02:00
const pathToUpload = path . join ( UPLOADS _PATH , request . file . filename ) ;
2023-07-20 19:32:15 +02:00
const crop = tryParse ( request . query . crop ) ;
let rawImg = await jimp . read ( pathToUpload ) ;
if ( typeof crop == 'object' && [ crop . x , crop . y , crop . width , crop . height ] . every ( x => typeof x === 'number' ) ) {
rawImg = rawImg . crop ( crop . x , crop . y , crop . width , crop . height ) ;
}
const image = await rawImg . cover ( AVATAR _WIDTH , AVATAR _HEIGHT ) . getBufferAsync ( jimp . MIME _PNG ) ;
const filename = request . body . overwrite _name || ` ${ Date . now ( ) } .png ` ;
2023-09-16 16:28:28 +02:00
const pathToNewFile = path . join ( DIRECTORIES . avatars , filename ) ;
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( pathToNewFile , image ) ;
2023-07-20 19:32:15 +02:00
fs . rmSync ( pathToUpload ) ;
return response . send ( { path : filename } ) ;
} catch ( err ) {
return response . status ( 400 ) . send ( 'Is not a valid image' ) ;
}
} ) ;
2023-08-20 05:01:09 +02:00
2023-08-20 06:15:57 +02:00
/ * *
* Ensure the directory for the provided file path exists .
* If not , it will recursively create the directory .
2023-08-20 11:37:38 +02:00
*
2023-08-20 06:15:57 +02:00
* @ param { string } filePath - The full path of the file for which the directory should be ensured .
* /
2023-08-20 05:01:09 +02:00
function ensureDirectoryExistence ( filePath ) {
const dirname = path . dirname ( filePath ) ;
if ( fs . existsSync ( dirname ) ) {
return true ;
}
ensureDirectoryExistence ( dirname ) ;
fs . mkdirSync ( dirname ) ;
}
2023-08-20 06:15:57 +02:00
/ * *
* Endpoint to handle image uploads .
* The image should be provided in the request body in base64 format .
* Optionally , a character name can be provided to save the image in a sub - folder .
2023-08-20 11:37:38 +02:00
*
2023-08-20 06:15:57 +02:00
* @ route POST / uploadimage
* @ param { Object } request . body - The request payload .
* @ param { string } request . body . image - The base64 encoded image data .
* @ param { string } [ request . body . ch _name ] - Optional character name to determine the sub - directory .
* @ returns { Object } response - The response object containing the path where the image was saved .
* /
2023-08-20 05:01:09 +02:00
app . post ( '/uploadimage' , jsonParser , async ( request , response ) => {
// Check for image data
if ( ! request . body || ! request . body . image ) {
return response . status ( 400 ) . send ( { error : "No image data provided" } ) ;
}
2023-11-18 23:40:21 +01:00
try {
// Extracting the base64 data and the image format
const splitParts = request . body . image . split ( ',' ) ;
const format = splitParts [ 0 ] . split ( ';' ) [ 0 ] . split ( '/' ) [ 1 ] ;
const base64Data = splitParts [ 1 ] ;
const validFormat = [ 'png' , 'jpg' , 'webp' , 'jpeg' , 'gif' ] . includes ( format ) ;
if ( ! validFormat ) {
return response . status ( 400 ) . send ( { error : "Invalid image format" } ) ;
}
2023-08-20 05:01:09 +02:00
2023-11-18 23:40:21 +01:00
// Constructing filename and path
let filename = ` ${ Date . now ( ) } . ${ format } ` ;
if ( request . body . filename ) {
filename = ` ${ request . body . filename } . ${ format } ` ;
}
2023-08-20 07:41:58 +02:00
2023-11-18 23:40:21 +01:00
// if character is defined, save to a sub folder for that character
let pathToNewFile = path . join ( DIRECTORIES . userImages , filename ) ;
if ( request . body . ch _name ) {
pathToNewFile = path . join ( DIRECTORIES . userImages , request . body . ch _name , filename ) ;
}
2023-08-20 05:01:09 +02:00
ensureDirectoryExistence ( pathToNewFile ) ;
const imageBuffer = Buffer . from ( base64Data , 'base64' ) ;
await fs . promises . writeFile ( pathToNewFile , imageBuffer ) ;
// send the path to the image, relative to the client folder, which means removing the first folder from the path which is 'public'
pathToNewFile = pathToNewFile . split ( path . sep ) . slice ( 1 ) . join ( path . sep ) ;
2023-08-20 11:37:38 +02:00
response . send ( { path : pathToNewFile } ) ;
2023-08-20 05:01:09 +02:00
} catch ( error ) {
console . log ( error ) ;
response . status ( 500 ) . send ( { error : "Failed to save the image" } ) ;
}
} ) ;
2023-08-30 23:55:17 +02:00
app . post ( '/listimgfiles/:folder' , ( req , res ) => {
const directoryPath = path . join ( process . cwd ( ) , 'public/user/images/' , sanitize ( req . params . folder ) ) ;
2023-08-21 22:06:27 +02:00
if ( ! fs . existsSync ( directoryPath ) ) {
fs . mkdirSync ( directoryPath , { recursive : true } ) ;
}
2023-08-30 23:55:17 +02:00
try {
const images = getImages ( directoryPath ) ;
return res . send ( images ) ;
} catch ( error ) {
console . error ( error ) ;
return res . status ( 500 ) . send ( { error : "Unable to retrieve files" } ) ;
}
2023-08-21 06:43:04 +02:00
} ) ;
2023-08-20 05:01:09 +02:00
2023-07-20 19:32:15 +02:00
app . post ( '/getgroups' , jsonParser , ( _ , response ) => {
const groups = [ ] ;
2023-09-16 16:28:28 +02:00
if ( ! fs . existsSync ( DIRECTORIES . groups ) ) {
fs . mkdirSync ( DIRECTORIES . groups ) ;
2023-07-20 19:32:15 +02:00
}
2023-09-16 16:28:28 +02:00
const files = fs . readdirSync ( DIRECTORIES . groups ) . filter ( x => path . extname ( x ) === '.json' ) ;
const chats = fs . readdirSync ( DIRECTORIES . groupChats ) . filter ( x => path . extname ( x ) === '.jsonl' ) ;
2023-07-20 19:32:15 +02:00
files . forEach ( function ( file ) {
try {
2023-09-16 16:28:28 +02:00
const filePath = path . join ( DIRECTORIES . groups , file ) ;
2023-07-20 19:32:15 +02:00
const fileContents = fs . readFileSync ( filePath , 'utf8' ) ;
const group = json5 . parse ( fileContents ) ;
const groupStat = fs . statSync ( filePath ) ;
group [ 'date_added' ] = groupStat . birthtimeMs ;
2023-09-08 09:51:59 +02:00
group [ 'create_date' ] = humanizedISO8601DateTime ( groupStat . birthtimeMs ) ;
2023-07-20 19:32:15 +02:00
let chat _size = 0 ;
let date _last _chat = 0 ;
if ( Array . isArray ( group . chats ) && Array . isArray ( chats ) ) {
for ( const chat of chats ) {
if ( group . chats . includes ( path . parse ( chat ) . name ) ) {
2023-09-16 16:28:28 +02:00
const chatStat = fs . statSync ( path . join ( DIRECTORIES . groupChats , chat ) ) ;
2023-07-20 19:32:15 +02:00
chat _size += chatStat . size ;
date _last _chat = Math . max ( date _last _chat , chatStat . mtimeMs ) ;
}
}
}
group [ 'date_last_chat' ] = date _last _chat ;
group [ 'chat_size' ] = chat _size ;
groups . push ( group ) ;
}
catch ( error ) {
console . error ( error ) ;
}
} ) ;
return response . send ( groups ) ;
} ) ;
app . post ( '/creategroup' , jsonParser , ( request , response ) => {
if ( ! request . body ) {
return response . sendStatus ( 400 ) ;
}
2023-08-19 21:22:24 +02:00
const id = String ( Date . now ( ) ) ;
2023-07-20 19:32:15 +02:00
const groupMetadata = {
id : id ,
name : request . body . name ? ? 'New Group' ,
members : request . body . members ? ? [ ] ,
avatar _url : request . body . avatar _url ,
allow _self _responses : ! ! request . body . allow _self _responses ,
activation _strategy : request . body . activation _strategy ? ? 0 ,
2023-10-25 21:39:31 +02:00
generation _mode : request . body . generation _mode ? ? 0 ,
2023-07-20 19:32:15 +02:00
disabled _members : request . body . disabled _members ? ? [ ] ,
chat _metadata : request . body . chat _metadata ? ? { } ,
fav : request . body . fav ,
chat _id : request . body . chat _id ? ? id ,
chats : request . body . chats ? ? [ id ] ,
} ;
2023-09-16 16:28:28 +02:00
const pathToFile = path . join ( DIRECTORIES . groups , ` ${ id } .json ` ) ;
2023-07-20 19:32:15 +02:00
const fileData = JSON . stringify ( groupMetadata ) ;
2023-09-16 16:28:28 +02:00
if ( ! fs . existsSync ( DIRECTORIES . groups ) ) {
fs . mkdirSync ( DIRECTORIES . groups ) ;
2023-07-20 19:32:15 +02:00
}
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( pathToFile , fileData ) ;
2023-07-20 19:32:15 +02:00
return response . send ( groupMetadata ) ;
} ) ;
app . post ( '/editgroup' , jsonParser , ( request , response ) => {
if ( ! request . body || ! request . body . id ) {
return response . sendStatus ( 400 ) ;
}
const id = request . body . id ;
2023-09-16 16:28:28 +02:00
const pathToFile = path . join ( DIRECTORIES . groups , ` ${ id } .json ` ) ;
2023-07-20 19:32:15 +02:00
const fileData = JSON . stringify ( request . body ) ;
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( pathToFile , fileData ) ;
2023-07-20 19:32:15 +02:00
return response . send ( { ok : true } ) ;
} ) ;
app . post ( '/getgroupchat' , jsonParser , ( request , response ) => {
if ( ! request . body || ! request . body . id ) {
return response . sendStatus ( 400 ) ;
}
const id = request . body . id ;
2023-09-16 16:28:28 +02:00
const pathToFile = path . join ( DIRECTORIES . groupChats , ` ${ id } .jsonl ` ) ;
2023-07-20 19:32:15 +02:00
if ( fs . existsSync ( pathToFile ) ) {
const data = fs . readFileSync ( pathToFile , 'utf8' ) ;
const lines = data . split ( '\n' ) ;
// Iterate through the array of strings and parse each line as JSON
2023-09-03 17:37:52 +02:00
const jsonData = lines . map ( line => tryParse ( line ) ) . filter ( x => x ) ;
2023-07-20 19:32:15 +02:00
return response . send ( jsonData ) ;
} else {
return response . send ( [ ] ) ;
}
} ) ;
app . post ( '/deletegroupchat' , jsonParser , ( request , response ) => {
if ( ! request . body || ! request . body . id ) {
return response . sendStatus ( 400 ) ;
}
const id = request . body . id ;
2023-09-16 16:28:28 +02:00
const pathToFile = path . join ( DIRECTORIES . groupChats , ` ${ id } .jsonl ` ) ;
2023-07-20 19:32:15 +02:00
if ( fs . existsSync ( pathToFile ) ) {
fs . rmSync ( pathToFile ) ;
return response . send ( { ok : true } ) ;
}
return response . send ( { error : true } ) ;
} ) ;
app . post ( '/savegroupchat' , jsonParser , ( request , response ) => {
if ( ! request . body || ! request . body . id ) {
return response . sendStatus ( 400 ) ;
}
const id = request . body . id ;
2023-09-16 16:28:28 +02:00
const pathToFile = path . join ( DIRECTORIES . groupChats , ` ${ id } .jsonl ` ) ;
2023-07-20 19:32:15 +02:00
2023-09-16 16:28:28 +02:00
if ( ! fs . existsSync ( DIRECTORIES . groupChats ) ) {
fs . mkdirSync ( DIRECTORIES . groupChats ) ;
2023-07-20 19:32:15 +02:00
}
let chat _data = request . body . chat ;
let jsonlData = chat _data . map ( JSON . stringify ) . join ( '\n' ) ;
2023-08-17 14:20:02 +02:00
writeFileAtomicSync ( pathToFile , jsonlData , 'utf8' ) ;
2023-10-24 21:09:55 +02:00
backupChat ( String ( id ) , jsonlData ) ;
2023-07-20 19:32:15 +02:00
return response . send ( { ok : true } ) ;
} ) ;
app . post ( '/deletegroup' , jsonParser , async ( request , response ) => {
if ( ! request . body || ! request . body . id ) {
return response . sendStatus ( 400 ) ;
}
const id = request . body . id ;
2023-09-16 16:28:28 +02:00
const pathToGroup = path . join ( DIRECTORIES . groups , sanitize ( ` ${ id } .json ` ) ) ;
2023-07-20 19:32:15 +02:00
try {
// Delete group chats
2023-08-31 18:44:58 +02:00
const group = json5 . parse ( fs . readFileSync ( pathToGroup , 'utf8' ) ) ;
2023-07-20 19:32:15 +02:00
if ( group && Array . isArray ( group . chats ) ) {
for ( const chat of group . chats ) {
console . log ( 'Deleting group chat' , chat ) ;
2023-09-16 16:28:28 +02:00
const pathToFile = path . join ( DIRECTORIES . groupChats , ` ${ id } .jsonl ` ) ;
2023-07-20 19:32:15 +02:00
if ( fs . existsSync ( pathToFile ) ) {
fs . rmSync ( pathToFile ) ;
}
}
}
} catch ( error ) {
console . error ( 'Could not delete group chats. Clean them up manually.' , error ) ;
}
if ( fs . existsSync ( pathToGroup ) ) {
fs . rmSync ( pathToGroup ) ;
}
return response . send ( { ok : true } ) ;
} ) ;
2023-08-19 16:43:56 +02:00
function cleanUploads ( ) {
try {
if ( fs . existsSync ( UPLOADS _PATH ) ) {
const uploads = fs . readdirSync ( UPLOADS _PATH ) ;
if ( ! uploads . length ) {
return ;
}
console . debug ( ` Cleaning uploads folder ( ${ uploads . length } files) ` ) ;
uploads . forEach ( file => {
const pathToFile = path . join ( UPLOADS _PATH , file ) ;
fs . unlinkSync ( pathToFile ) ;
} ) ;
}
} catch ( err ) {
console . error ( err ) ;
}
}
2023-07-20 19:32:15 +02:00
/* OpenAI */
2023-08-31 21:46:13 +02:00
app . post ( "/getstatus_openai" , jsonParser , async function ( request , response _getstatus _openai ) {
2023-07-20 19:32:15 +02:00
if ( ! request . body ) return response _getstatus _openai . sendStatus ( 400 ) ;
let api _url ;
let api _key _openai ;
let headers ;
if ( request . body . use _openrouter == false ) {
2023-08-31 18:44:58 +02:00
api _url = new URL ( request . body . reverse _proxy || API _OPENAI ) . toString ( ) ;
2023-07-28 20:33:29 +02:00
api _key _openai = request . body . reverse _proxy ? request . body . proxy _password : readSecret ( SECRET _KEYS . OPENAI ) ;
2023-07-20 19:32:15 +02:00
headers = { } ;
} else {
api _url = 'https://openrouter.ai/api/v1' ;
api _key _openai = readSecret ( SECRET _KEYS . OPENROUTER ) ;
// OpenRouter needs to pass the referer: https://openrouter.ai/docs
headers = { 'HTTP-Referer' : request . headers . referer } ;
}
2023-07-28 20:33:29 +02:00
if ( ! api _key _openai && ! request . body . reverse _proxy ) {
2023-07-20 19:32:15 +02:00
return response _getstatus _openai . status ( 401 ) . send ( { error : true } ) ;
}
2023-08-31 21:46:13 +02:00
try {
const response = await fetch ( api _url + "/models" , {
method : 'GET' ,
headers : {
"Authorization" : "Bearer " + api _key _openai ,
... headers ,
} ,
} ) ;
if ( response . ok ) {
const data = await response . json ( ) ;
2023-07-20 19:32:15 +02:00
response _getstatus _openai . send ( data ) ;
2023-08-31 21:46:13 +02:00
2023-10-16 19:25:51 +02:00
if ( request . body . use _openrouter && Array . isArray ( data ? . data ) ) {
2023-08-10 06:08:26 +02:00
let models = [ ] ;
2023-08-31 21:46:13 +02:00
2023-08-10 19:06:18 +02:00
data . data . forEach ( model => {
const context _length = model . context _length ;
2023-11-12 12:07:57 +01:00
const tokens _dollar = Number ( 1 / ( 1000 * model . pricing ? . prompt ) ) ;
2023-08-10 21:13:24 +02:00
const tokens _rounded = ( Math . round ( tokens _dollar * 1000 ) / 1000 ) . toFixed ( 0 ) ;
2023-08-10 19:06:18 +02:00
models [ model . id ] = {
2023-08-10 21:13:24 +02:00
tokens _per _dollar : tokens _rounded + 'k' ,
2023-08-10 19:06:18 +02:00
context _length : context _length ,
} ;
} ) ;
2023-08-31 21:46:13 +02:00
2023-08-10 06:08:26 +02:00
console . log ( 'Available OpenRouter models:' , models ) ;
} else {
2023-10-16 19:25:51 +02:00
const models = data ? . data ;
if ( Array . isArray ( models ) ) {
const modelIds = models . filter ( x => x && typeof x === 'object' ) . map ( x => x . id ) . sort ( ) ;
console . log ( 'Available OpenAI models:' , modelIds ) ;
} else {
console . log ( 'OpenAI endpoint did not return a list of models.' )
}
2023-08-10 06:08:26 +02:00
}
2023-07-20 19:32:15 +02:00
}
2023-08-31 21:46:13 +02:00
else {
2023-11-12 12:23:46 +01:00
console . log ( 'OpenAI status check failed. Either Access Token is incorrect or API endpoint is down.' ) ;
response _getstatus _openai . send ( { error : true , can _bypass : true , data : { data : [ ] } } ) ;
2023-07-20 19:32:15 +02:00
}
2023-08-31 21:46:13 +02:00
} catch ( e ) {
console . error ( e ) ;
2023-10-16 19:25:51 +02:00
if ( ! response _getstatus _openai . headersSent ) {
response _getstatus _openai . send ( { error : true } ) ;
} else {
response _getstatus _openai . end ( ) ;
}
2023-08-31 21:46:13 +02:00
}
2023-07-20 19:32:15 +02:00
} ) ;
app . post ( "/openai_bias" , jsonParser , async function ( request , response ) {
if ( ! request . body || ! Array . isArray ( request . body ) )
return response . sendStatus ( 400 ) ;
2023-11-09 00:03:54 +01:00
try {
const result = { } ;
const model = getTokenizerModel ( String ( request . query . model || '' ) ) ;
2023-07-20 19:32:15 +02:00
2023-11-09 00:03:54 +01:00
// no bias for claude
if ( model == 'claude' ) {
return response . send ( result ) ;
}
2023-07-20 19:32:15 +02:00
2023-11-09 00:03:54 +01:00
let encodeFunction ;
2023-07-20 19:32:15 +02:00
2023-11-09 00:03:54 +01:00
if ( sentencepieceTokenizers . includes ( model ) ) {
const tokenizer = getSentencepiceTokenizer ( model ) ;
2023-11-15 18:39:55 +01:00
const instance = await tokenizer ? . get ( ) ;
encodeFunction = ( text ) => new Uint32Array ( instance ? . encodeIds ( text ) ) ;
2023-11-09 00:03:54 +01:00
} else {
const tokenizer = getTiktokenTokenizer ( model ) ;
encodeFunction = ( tokenizer . encode . bind ( tokenizer ) ) ;
2023-07-20 19:32:15 +02:00
}
2023-11-09 00:03:54 +01:00
for ( const entry of request . body ) {
if ( ! entry || ! entry . text ) {
continue ;
2023-07-20 19:32:15 +02:00
}
2023-10-19 12:37:08 +02:00
try {
2023-11-09 00:03:54 +01:00
const tokens = getEntryTokens ( entry . text , encodeFunction ) ;
for ( const token of tokens ) {
result [ token ] = entry . value ;
2023-10-19 12:37:08 +02:00
}
} catch {
2023-11-09 00:03:54 +01:00
console . warn ( 'Tokenizer failed to encode:' , entry . text ) ;
2023-10-19 12:37:08 +02:00
}
}
2023-11-09 00:03:54 +01:00
// not needed for cached tokenizers
//tokenizer.free();
return response . send ( result ) ;
/ * *
* Gets tokenids for a given entry
* @ param { string } text Entry text
* @ param { ( string ) => Uint32Array } encode Function to encode text to token ids
* @ returns { Uint32Array } Array of token ids
* /
function getEntryTokens ( text , encode ) {
// Get raw token ids from JSON array
if ( text . trim ( ) . startsWith ( '[' ) && text . trim ( ) . endsWith ( ']' ) ) {
try {
const json = JSON . parse ( text ) ;
if ( Array . isArray ( json ) && json . every ( x => typeof x === 'number' ) ) {
return new Uint32Array ( json ) ;
}
} catch {
// ignore
}
}
// Otherwise, get token ids from tokenizer
return encode ( text ) ;
}
} catch ( error ) {
console . error ( error ) ;
return response . send ( { } ) ;
2023-10-19 12:37:08 +02:00
}
2023-07-20 19:32:15 +02:00
} ) ;
function convertChatMLPrompt ( messages ) {
2023-11-02 23:34:22 +01:00
if ( typeof messages === 'string' ) {
return messages ;
}
2023-07-20 19:32:15 +02:00
const messageStrings = [ ] ;
messages . forEach ( m => {
if ( m . role === 'system' && m . name === undefined ) {
messageStrings . push ( "System: " + m . content ) ;
}
else if ( m . role === 'system' && m . name !== undefined ) {
messageStrings . push ( m . name + ": " + m . content ) ;
}
else {
messageStrings . push ( m . role + ": " + m . content ) ;
}
} ) ;
2023-09-20 20:50:14 +02:00
return messageStrings . join ( "\n" ) + '\nassistant:' ;
2023-07-20 19:32:15 +02:00
}
async function sendScaleRequest ( request , response ) {
const api _url = new URL ( request . body . api _url _scale ) . toString ( ) ;
const api _key _scale = readSecret ( SECRET _KEYS . SCALE ) ;
if ( ! api _key _scale ) {
return response . status ( 401 ) . send ( { error : true } ) ;
}
const requestPrompt = convertChatMLPrompt ( request . body . messages ) ;
console . log ( 'Scale request:' , requestPrompt ) ;
try {
const controller = new AbortController ( ) ;
request . socket . removeAllListeners ( 'close' ) ;
request . socket . on ( 'close' , function ( ) {
controller . abort ( ) ;
} ) ;
const generateResponse = await fetch ( api _url , {
method : "POST" ,
body : JSON . stringify ( { input : { input : requestPrompt } } ) ,
headers : {
'Content-Type' : 'application/json' ,
'Authorization' : ` Basic ${ api _key _scale } ` ,
} ,
timeout : 0 ,
} ) ;
if ( ! generateResponse . ok ) {
console . log ( ` Scale API returned error: ${ generateResponse . status } ${ generateResponse . statusText } ${ await generateResponse . text ( ) } ` ) ;
return response . status ( generateResponse . status ) . send ( { error : true } ) ;
}
const generateResponseJson = await generateResponse . json ( ) ;
console . log ( 'Scale response:' , generateResponseJson ) ;
const reply = { choices : [ { "message" : { "content" : generateResponseJson . output , } } ] } ;
return response . send ( reply ) ;
} catch ( error ) {
console . log ( error ) ;
if ( ! response . headersSent ) {
return response . status ( 500 ) . send ( { error : true } ) ;
}
}
}
2023-08-20 12:55:37 +02:00
app . post ( "/generate_altscale" , jsonParser , function ( request , response _generate _scale ) {
2023-08-22 16:46:37 +02:00
if ( ! request . body ) return response _generate _scale . sendStatus ( 400 ) ;
2023-08-20 12:55:37 +02:00
fetch ( 'https://dashboard.scale.com/spellbook/api/trpc/v2.variant.run' , {
method : 'POST' ,
headers : {
'Content-Type' : 'application/json' ,
'cookie' : ` _jwt= ${ readSecret ( SECRET _KEYS . SCALE _COOKIE ) } ` ,
} ,
body : JSON . stringify ( {
json : {
variant : {
name : 'New Variant' ,
appId : '' ,
taxonomy : null
} ,
prompt : {
id : '' ,
template : '{{input}}\n' ,
exampleVariables : { } ,
variablesSourceDataId : null ,
systemMessage : request . body . sysprompt
} ,
modelParameters : {
id : '' ,
modelId : 'GPT4' ,
modelType : 'OpenAi' ,
maxTokens : request . body . max _tokens ,
temperature : request . body . temp ,
2023-08-22 13:29:18 +02:00
stop : "user:" ,
2023-08-20 12:55:37 +02:00
suffix : null ,
2023-08-22 13:29:18 +02:00
topP : request . body . top _p ,
2023-08-20 12:55:37 +02:00
logprobs : null ,
2023-08-22 13:29:18 +02:00
logitBias : request . body . logit _bias
2023-08-20 12:55:37 +02:00
} ,
inputs : [
{
index : '-1' ,
valueByName : {
input : request . body . prompt
}
}
]
} ,
meta : {
values : {
'variant.taxonomy' : [ 'undefined' ] ,
'prompt.variablesSourceDataId' : [ 'undefined' ] ,
'modelParameters.suffix' : [ 'undefined' ] ,
'modelParameters.logprobs' : [ 'undefined' ] ,
}
}
} )
} )
. then ( response => response . json ( ) )
. then ( data => {
console . log ( data . result . data . json . outputs [ 0 ] )
2023-08-22 16:46:37 +02:00
return response _generate _scale . send ( { output : data . result . data . json . outputs [ 0 ] } ) ;
2023-08-20 12:55:37 +02:00
} )
. catch ( ( error ) => {
console . error ( 'Error:' , error )
2023-08-22 16:46:37 +02:00
return response _generate _scale . send ( { error : true } )
2023-08-20 12:55:37 +02:00
} ) ;
} ) ;
2023-08-31 18:44:58 +02:00
/ * *
* @ param { express . Request } request
* @ param { express . Response } response
* /
2023-07-20 19:32:15 +02:00
async function sendClaudeRequest ( request , response ) {
2023-08-31 18:44:58 +02:00
const api _url = new URL ( request . body . reverse _proxy || API _CLAUDE ) . toString ( ) ;
2023-07-28 20:33:29 +02:00
const api _key _claude = request . body . reverse _proxy ? request . body . proxy _password : readSecret ( SECRET _KEYS . CLAUDE ) ;
2023-07-20 19:32:15 +02:00
if ( ! api _key _claude ) {
return response . status ( 401 ) . send ( { error : true } ) ;
}
try {
const controller = new AbortController ( ) ;
request . socket . removeAllListeners ( 'close' ) ;
request . socket . on ( 'close' , function ( ) {
controller . abort ( ) ;
} ) ;
2023-11-21 21:11:26 +01:00
let doSystemPrompt = request . body . model === 'claude-2' || request . body . model === 'claude-2.1' ;
let requestPrompt = convertClaudePrompt ( request . body . messages , true , ! request . body . exclude _assistant , doSystemPrompt ) ;
2023-07-30 00:51:59 +02:00
2023-08-19 19:09:50 +02:00
if ( request . body . assistant _prefill && ! request . body . exclude _assistant ) {
2023-07-30 00:51:59 +02:00
requestPrompt += request . body . assistant _prefill ;
}
2023-07-20 19:32:15 +02:00
console . log ( 'Claude request:' , requestPrompt ) ;
2023-08-25 23:12:11 +02:00
const stop _sequences = [ "\n\nHuman:" , "\n\nSystem:" , "\n\nAssistant:" ] ;
// Add custom stop sequences
if ( Array . isArray ( request . body . stop ) ) {
stop _sequences . push ( ... request . body . stop ) ;
}
2023-07-20 19:32:15 +02:00
const generateResponse = await fetch ( api _url + '/complete' , {
method : "POST" ,
signal : controller . signal ,
body : JSON . stringify ( {
prompt : requestPrompt ,
model : request . body . model ,
max _tokens _to _sample : request . body . max _tokens ,
2023-08-25 23:12:11 +02:00
stop _sequences : stop _sequences ,
2023-07-20 19:32:15 +02:00
temperature : request . body . temperature ,
top _p : request . body . top _p ,
top _k : request . body . top _k ,
stream : request . body . stream ,
} ) ,
headers : {
"Content-Type" : "application/json" ,
"anthropic-version" : '2023-06-01' ,
"x-api-key" : api _key _claude ,
} ,
timeout : 0 ,
} ) ;
if ( request . body . stream ) {
// Pipe remote SSE stream to Express response
generateResponse . body . pipe ( response ) ;
request . socket . on ( 'close' , function ( ) {
2023-08-31 18:44:58 +02:00
if ( generateResponse . body instanceof Readable ) generateResponse . body . destroy ( ) ; // Close the remote stream
2023-07-20 19:32:15 +02:00
response . end ( ) ; // End the Express response
} ) ;
generateResponse . body . on ( 'end' , function ( ) {
console . log ( "Streaming request finished" ) ;
response . end ( ) ;
} ) ;
} else {
if ( ! generateResponse . ok ) {
console . log ( ` Claude API returned error: ${ generateResponse . status } ${ generateResponse . statusText } ${ await generateResponse . text ( ) } ` ) ;
return response . status ( generateResponse . status ) . send ( { error : true } ) ;
}
const generateResponseJson = await generateResponse . json ( ) ;
const responseText = generateResponseJson . completion ;
console . log ( 'Claude response:' , responseText ) ;
// Wrap it back to OAI format
const reply = { choices : [ { "message" : { "content" : responseText , } } ] } ;
return response . send ( reply ) ;
}
} catch ( error ) {
console . log ( 'Error communicating with Claude: ' , error ) ;
if ( ! response . headersSent ) {
return response . status ( 500 ) . send ( { error : true } ) ;
}
}
}
2023-09-23 19:48:56 +02:00
/ * *
* @ param { express . Request } request
* @ param { express . Response } response
* /
async function sendPalmRequest ( request , response ) {
const api _key _palm = readSecret ( SECRET _KEYS . PALM ) ;
if ( ! api _key _palm ) {
return response . status ( 401 ) . send ( { error : true } ) ;
}
const body = {
prompt : {
text : request . body . messages ,
} ,
stopSequences : request . body . stop ,
safetySettings : PALM _SAFETY ,
temperature : request . body . temperature ,
topP : request . body . top _p ,
topK : request . body . top _k || undefined ,
maxOutputTokens : request . body . max _tokens ,
candidate _count : 1 ,
} ;
console . log ( 'Palm request:' , body ) ;
try {
const controller = new AbortController ( ) ;
request . socket . removeAllListeners ( 'close' ) ;
request . socket . on ( 'close' , function ( ) {
controller . abort ( ) ;
} ) ;
const generateResponse = await fetch ( ` https://generativelanguage.googleapis.com/v1beta2/models/text-bison-001:generateText?key= ${ api _key _palm } ` , {
body : JSON . stringify ( body ) ,
method : "POST" ,
headers : {
"Content-Type" : "application/json"
} ,
signal : controller . signal ,
timeout : 0 ,
} ) ;
if ( ! generateResponse . ok ) {
console . log ( ` Palm API returned error: ${ generateResponse . status } ${ generateResponse . statusText } ${ await generateResponse . text ( ) } ` ) ;
return response . status ( generateResponse . status ) . send ( { error : true } ) ;
}
const generateResponseJson = await generateResponse . json ( ) ;
2023-11-10 14:55:49 +01:00
const responseText = generateResponseJson ? . candidates [ 0 ] ? . output ;
if ( ! responseText ) {
console . log ( 'Palm API returned no response' , generateResponseJson ) ;
let message = ` Palm API returned no response: ${ JSON . stringify ( generateResponseJson ) } ` ;
// Check for filters
if ( generateResponseJson ? . filters [ 0 ] ? . message ) {
message = ` Palm filter triggered: ${ generateResponseJson . filters [ 0 ] . message } ` ;
}
return response . send ( { error : { message } } ) ;
}
2023-09-23 19:48:56 +02:00
console . log ( 'Palm response:' , responseText ) ;
// Wrap it back to OAI format
const reply = { choices : [ { "message" : { "content" : responseText , } } ] } ;
return response . send ( reply ) ;
} catch ( error ) {
console . log ( 'Error communicating with Palm API: ' , error ) ;
if ( ! response . headersSent ) {
return response . status ( 500 ) . send ( { error : true } ) ;
}
}
}
2023-07-20 19:32:15 +02:00
app . post ( "/generate_openai" , jsonParser , function ( request , response _generate _openai ) {
if ( ! request . body ) return response _generate _openai . status ( 400 ) . send ( { error : true } ) ;
if ( request . body . use _claude ) {
return sendClaudeRequest ( request , response _generate _openai ) ;
}
if ( request . body . use _scale ) {
return sendScaleRequest ( request , response _generate _openai ) ;
}
2023-08-19 17:20:42 +02:00
if ( request . body . use _ai21 ) {
return sendAI21Request ( request , response _generate _openai ) ;
}
2023-09-23 19:48:56 +02:00
if ( request . body . use _palm ) {
return sendPalmRequest ( request , response _generate _openai ) ;
}
2023-07-20 19:32:15 +02:00
let api _url ;
let api _key _openai ;
let headers ;
2023-08-01 17:49:03 +02:00
let bodyParams ;
2023-07-20 19:32:15 +02:00
if ( ! request . body . use _openrouter ) {
2023-08-31 18:44:58 +02:00
api _url = new URL ( request . body . reverse _proxy || API _OPENAI ) . toString ( ) ;
2023-07-28 20:33:29 +02:00
api _key _openai = request . body . reverse _proxy ? request . body . proxy _password : readSecret ( SECRET _KEYS . OPENAI ) ;
2023-07-20 19:32:15 +02:00
headers = { } ;
2023-08-01 17:49:03 +02:00
bodyParams = { } ;
2023-07-20 19:32:15 +02:00
} else {
api _url = 'https://openrouter.ai/api/v1' ;
api _key _openai = readSecret ( SECRET _KEYS . OPENROUTER ) ;
// OpenRouter needs to pass the referer: https://openrouter.ai/docs
headers = { 'HTTP-Referer' : request . headers . referer } ;
2023-08-01 17:49:03 +02:00
bodyParams = { 'transforms' : [ "middle-out" ] } ;
2023-08-24 02:21:17 +02:00
if ( request . body . use _fallback ) {
bodyParams [ 'route' ] = 'fallback' ;
}
2023-07-20 19:32:15 +02:00
}
2023-07-28 20:33:29 +02:00
if ( ! api _key _openai && ! request . body . reverse _proxy ) {
2023-07-20 19:32:15 +02:00
return response _generate _openai . status ( 401 ) . send ( { error : true } ) ;
}
2023-08-25 23:12:11 +02:00
// Add custom stop sequences
2023-08-27 12:17:20 +02:00
if ( Array . isArray ( request . body . stop ) && request . body . stop . length > 0 ) {
2023-08-25 23:12:11 +02:00
bodyParams [ 'stop' ] = request . body . stop ;
}
2023-11-02 23:34:22 +01:00
const isTextCompletion = Boolean ( request . body . model && TEXT _COMPLETION _MODELS . includes ( request . body . model ) ) || typeof request . body . messages === 'string' ;
2023-07-20 19:32:15 +02:00
const textPrompt = isTextCompletion ? convertChatMLPrompt ( request . body . messages ) : '' ;
2023-11-02 23:34:22 +01:00
const endpointUrl = isTextCompletion && ! request . body . use _openrouter ? ` ${ api _url } /completions ` : ` ${ api _url } /chat/completions ` ;
2023-07-20 19:32:15 +02:00
const controller = new AbortController ( ) ;
request . socket . removeAllListeners ( 'close' ) ;
request . socket . on ( 'close' , function ( ) {
controller . abort ( ) ;
} ) ;
2023-09-01 18:00:32 +02:00
/** @type {import('node-fetch').RequestInit} */
2023-07-20 19:32:15 +02:00
const config = {
method : 'post' ,
headers : {
'Content-Type' : 'application/json' ,
'Authorization' : 'Bearer ' + api _key _openai ,
... headers ,
} ,
2023-09-01 18:00:32 +02:00
body : JSON . stringify ( {
2023-07-20 19:32:15 +02:00
"messages" : isTextCompletion === false ? request . body . messages : undefined ,
"prompt" : isTextCompletion === true ? textPrompt : undefined ,
"model" : request . body . model ,
"temperature" : request . body . temperature ,
"max_tokens" : request . body . max _tokens ,
"stream" : request . body . stream ,
"presence_penalty" : request . body . presence _penalty ,
"frequency_penalty" : request . body . frequency _penalty ,
"top_p" : request . body . top _p ,
"top_k" : request . body . top _k ,
2023-09-15 18:31:17 +02:00
"stop" : isTextCompletion === false ? request . body . stop : undefined ,
2023-08-01 17:49:03 +02:00
"logit_bias" : request . body . logit _bias ,
... bodyParams ,
2023-09-01 18:00:32 +02:00
} ) ,
2023-07-20 19:32:15 +02:00
signal : controller . signal ,
2023-09-01 18:00:32 +02:00
timeout : 0 ,
2023-07-20 19:32:15 +02:00
} ;
2023-09-01 18:00:32 +02:00
console . log ( JSON . parse ( String ( config . body ) ) ) ;
2023-07-20 19:32:15 +02:00
2023-09-01 18:00:32 +02:00
makeRequest ( config , response _generate _openai , request ) ;
2023-07-20 19:32:15 +02:00
2023-09-01 18:00:32 +02:00
/ * *
*
* @ param { * } config
* @ param { express . Response } response _generate _openai
* @ param { express . Request } request
* @ param { Number } retries
* @ param { Number } timeout
* /
2023-08-20 15:25:16 +02:00
async function makeRequest ( config , response _generate _openai , request , retries = 5 , timeout = 5000 ) {
2023-07-20 19:32:15 +02:00
try {
2023-09-01 18:00:32 +02:00
const fetchResponse = await fetch ( endpointUrl , config )
2023-07-20 19:32:15 +02:00
2023-09-01 18:00:32 +02:00
if ( fetchResponse . ok ) {
2023-07-20 19:32:15 +02:00
if ( request . body . stream ) {
console . log ( 'Streaming request in progress' ) ;
2023-09-01 18:00:32 +02:00
fetchResponse . body . pipe ( response _generate _openai ) ;
fetchResponse . body . on ( 'end' , ( ) => {
2023-07-20 19:32:15 +02:00
console . log ( 'Streaming request finished' ) ;
response _generate _openai . end ( ) ;
} ) ;
} else {
2023-09-01 18:00:32 +02:00
let json = await fetchResponse . json ( )
response _generate _openai . send ( json ) ;
console . log ( json ) ;
console . log ( json ? . choices [ 0 ] ? . message ) ;
2023-07-20 19:32:15 +02:00
}
2023-09-01 18:00:32 +02:00
} else if ( fetchResponse . status === 429 && retries > 0 ) {
2023-08-20 15:25:16 +02:00
console . log ( ` Out of quota, retrying in ${ Math . round ( timeout / 1000 ) } s ` ) ;
2023-07-20 19:32:15 +02:00
setTimeout ( ( ) => {
2023-11-08 11:07:14 +01:00
timeout *= 2 ;
makeRequest ( config , response _generate _openai , request , retries - 1 , timeout ) ;
2023-07-20 19:32:15 +02:00
} , timeout ) ;
} else {
2023-09-01 18:00:32 +02:00
await handleErrorResponse ( fetchResponse ) ;
}
} catch ( error ) {
console . log ( 'Generation failed' , error ) ;
if ( ! response _generate _openai . headersSent ) {
response _generate _openai . send ( { error : true } ) ;
} else {
response _generate _openai . end ( ) ;
2023-07-20 19:32:15 +02:00
}
}
}
2023-09-01 18:00:32 +02:00
async function handleErrorResponse ( response ) {
const responseText = await response . text ( ) ;
const errorData = tryParse ( responseText ) ;
2023-07-20 19:32:15 +02:00
2023-08-08 19:07:41 +02:00
const statusMessages = {
400 : 'Bad request' ,
401 : 'Unauthorized' ,
402 : 'Credit limit reached' ,
403 : 'Forbidden' ,
404 : 'Not found' ,
429 : 'Too many requests' ,
451 : 'Unavailable for legal reasons' ,
2023-09-01 18:00:32 +02:00
502 : 'Bad gateway' ,
2023-08-08 19:07:41 +02:00
} ;
2023-09-01 18:00:32 +02:00
const message = errorData ? . error ? . message || statusMessages [ response . status ] || 'Unknown error occurred' ;
const quota _error = response . status === 429 && errorData ? . error ? . type === 'insufficient_quota' ;
console . log ( message ) ;
2023-08-08 19:07:41 +02:00
2023-07-20 19:32:15 +02:00
if ( ! response _generate _openai . headersSent ) {
2023-09-01 18:00:32 +02:00
response _generate _openai . send ( { error : { message } , quota _error : quota _error } ) ;
2023-07-20 19:32:15 +02:00
} else if ( ! response _generate _openai . writableEnded ) {
response _generate _openai . write ( response ) ;
2023-09-01 18:00:32 +02:00
} else {
response _generate _openai . end ( ) ;
2023-07-20 19:32:15 +02:00
}
}
} ) ;
2023-08-19 17:20:42 +02:00
async function sendAI21Request ( request , response ) {
if ( ! request . body ) return response . sendStatus ( 400 ) ;
const controller = new AbortController ( ) ;
console . log ( request . body . messages )
request . socket . removeAllListeners ( 'close' ) ;
request . socket . on ( 'close' , function ( ) {
controller . abort ( ) ;
} ) ;
const options = {
method : 'POST' ,
headers : {
accept : 'application/json' ,
'content-type' : 'application/json' ,
Authorization : ` Bearer ${ readSecret ( SECRET _KEYS . AI21 ) } `
} ,
body : JSON . stringify ( {
numResults : 1 ,
maxTokens : request . body . max _tokens ,
minTokens : 0 ,
temperature : request . body . temperature ,
topP : request . body . top _p ,
stopSequences : request . body . stop _tokens ,
topKReturn : request . body . top _k ,
frequencyPenalty : {
scale : request . body . frequency _penalty * 100 ,
applyToWhitespaces : false ,
applyToPunctuations : false ,
applyToNumbers : false ,
applyToStopwords : false ,
applyToEmojis : false
} ,
presencePenalty : {
scale : request . body . presence _penalty ,
applyToWhitespaces : false ,
applyToPunctuations : false ,
applyToNumbers : false ,
applyToStopwords : false ,
applyToEmojis : false
} ,
countPenalty : {
scale : request . body . count _pen ,
applyToWhitespaces : false ,
applyToPunctuations : false ,
applyToNumbers : false ,
applyToStopwords : false ,
applyToEmojis : false
} ,
prompt : request . body . messages
} ) ,
signal : controller . signal ,
} ;
fetch ( ` https://api.ai21.com/studio/v1/ ${ request . body . model } /complete ` , options )
. then ( r => r . json ( ) )
. then ( r => {
if ( r . completions === undefined ) {
console . log ( r )
} else {
console . log ( r . completions [ 0 ] . data . text )
}
const reply = { choices : [ { "message" : { "content" : r . completions [ 0 ] . data . text , } } ] } ;
return response . send ( reply )
} )
. catch ( err => {
console . error ( err )
2023-08-19 17:52:06 +02:00
return response . send ( { error : true } )
2023-08-19 17:20:42 +02:00
} ) ;
}
2023-07-20 19:32:15 +02:00
app . post ( "/tokenize_via_api" , jsonParser , async function ( request , response ) {
if ( ! request . body ) {
return response . sendStatus ( 400 ) ;
}
2023-11-08 09:13:28 +01:00
const text = String ( request . body . text ) || '' ;
const api = String ( request . body . api ) ;
const baseUrl = String ( request . body . url ) ;
const legacyApi = Boolean ( request . body . legacy _api ) ;
2023-07-20 19:32:15 +02:00
try {
2023-11-08 02:38:04 +01:00
if ( api == 'textgenerationwebui' ) {
const args = {
method : 'POST' ,
2023-11-09 18:39:08 +01:00
headers : { "Content-Type" : "application/json" } ,
2023-11-08 02:38:04 +01:00
} ;
2023-08-04 13:41:00 +02:00
2023-09-28 18:10:00 +02:00
setAdditionalHeaders ( request , args , null ) ;
2023-11-08 16:09:33 +01:00
// Convert to string + remove trailing slash + /v1 suffix
let url = String ( baseUrl ) . replace ( /\/$/ , '' ) . replace ( /\/v1$/ , '' ) ;
2023-11-08 09:13:28 +01:00
if ( legacyApi ) {
url += '/v1/token-count' ;
2023-11-10 14:55:49 +01:00
args . body = JSON . stringify ( { "prompt" : text } ) ;
2023-11-19 16:14:53 +01:00
}
else if ( request . body . use _tabby ) {
2023-11-17 20:51:44 +01:00
url += '/v1/token/encode' ;
args . body = JSON . stringify ( { "text" : text } ) ;
2023-11-19 16:14:53 +01:00
}
else if ( request . body . use _koboldcpp ) {
url += '/api/extra/tokencount' ;
args . body = JSON . stringify ( { "prompt" : text } ) ;
}
else {
2023-11-17 20:51:44 +01:00
url += '/v1/internal/encode' ;
2023-11-09 18:39:08 +01:00
args . body = JSON . stringify ( { "text" : text } ) ;
2023-11-08 09:13:28 +01:00
}
2023-11-08 02:38:04 +01:00
const result = await fetch ( url , args ) ;
if ( ! result . ok ) {
console . log ( ` API returned error: ${ result . status } ${ result . statusText } ` ) ;
return response . send ( { error : true } ) ;
}
const data = await result . json ( ) ;
2023-11-19 16:14:53 +01:00
const count = legacyApi ? data ? . results [ 0 ] ? . tokens : ( data ? . length ? ? data ? . value ) ;
const ids = legacyApi ? [ ] : ( data ? . tokens ? ? [ ] ) ;
2023-11-09 18:39:08 +01:00
return response . send ( { count , ids } ) ;
2023-08-03 05:25:24 +02:00
}
2023-07-20 19:32:15 +02:00
2023-11-08 02:38:04 +01:00
else if ( api == 'kobold' ) {
const args = {
method : 'POST' ,
body : JSON . stringify ( { "prompt" : text } ) ,
headers : { "Content-Type" : "application/json" }
} ;
2023-11-08 09:13:28 +01:00
let url = String ( baseUrl ) . replace ( /\/$/ , '' ) ;
url += '/extra/tokencount' ;
2023-11-08 02:38:04 +01:00
const result = await fetch ( url , args ) ;
if ( ! result . ok ) {
console . log ( ` API returned error: ${ result . status } ${ result . statusText } ` ) ;
return response . send ( { error : true } ) ;
}
const data = await result . json ( ) ;
2023-08-24 19:19:57 +02:00
const count = data [ 'value' ] ;
2023-11-09 18:39:08 +01:00
return response . send ( { count : count , ids : [ ] } ) ;
2023-08-03 05:25:24 +02:00
}
2023-07-20 19:32:15 +02:00
2023-08-24 19:19:57 +02:00
else {
2023-11-08 02:38:04 +01:00
console . log ( 'Unknown API' , api ) ;
2023-08-24 19:19:57 +02:00
return response . send ( { error : true } ) ;
}
2023-07-20 19:32:15 +02:00
} catch ( error ) {
console . log ( error ) ;
return response . send ( { error : true } ) ;
}
} ) ;
// ** REST CLIENT ASYNC WRAPPERS **
2023-09-01 00:30:33 +02:00
/ * *
* Convenience function for fetch requests ( default GET ) returning as JSON .
* @ param { string } url
* @ param { import ( 'node-fetch' ) . RequestInit } args
* /
async function fetchJSON ( url , args = { } ) {
if ( args . method === undefined ) args . method = 'GET' ;
const response = await fetch ( url , args ) ;
2023-07-20 19:32:15 +02:00
if ( response . ok ) {
const data = await response . json ( ) ;
return data ;
}
throw response ;
}
// ** END **
2023-11-06 20:47:00 +01:00
// OpenAI API
2023-11-19 19:30:34 +01:00
require ( './src/openai' ) . registerEndpoints ( app , jsonParser , urlencodedParser ) ;
2023-11-06 20:47:00 +01:00
2023-09-16 17:48:06 +02:00
// Tokenizers
require ( './src/tokenizers' ) . registerEndpoints ( app , jsonParser ) ;
2023-09-16 16:36:54 +02:00
// Preset management
require ( './src/presets' ) . registerEndpoints ( app , jsonParser ) ;
2023-09-16 16:28:28 +02:00
// Secrets managemenet
require ( './src/secrets' ) . registerEndpoints ( app , jsonParser ) ;
// Thumbnail generation
require ( './src/thumbnails' ) . registerEndpoints ( app , jsonParser ) ;
// NovelAI generation
require ( './src/novelai' ) . registerEndpoints ( app , jsonParser ) ;
// Third-party extensions
require ( './src/extensions' ) . registerEndpoints ( app , jsonParser ) ;
// Asset management
require ( './src/assets' ) . registerEndpoints ( app , jsonParser ) ;
// Character sprite management
require ( './src/sprites' ) . registerEndpoints ( app , jsonParser , urlencodedParser ) ;
// Custom content management
require ( './src/content-manager' ) . registerEndpoints ( app , jsonParser ) ;
// Stable Diffusion generation
require ( './src/stable-diffusion' ) . registerEndpoints ( app , jsonParser ) ;
// LLM and SD Horde generation
require ( './src/horde' ) . registerEndpoints ( app , jsonParser ) ;
// Vector storage DB
require ( './src/vectors' ) . registerEndpoints ( app , jsonParser ) ;
// Chat translation
require ( './src/translate' ) . registerEndpoints ( app , jsonParser ) ;
// Emotion classification
require ( './src/classify' ) . registerEndpoints ( app , jsonParser ) ;
// Image captioning
require ( './src/caption' ) . registerEndpoints ( app , jsonParser ) ;
2023-11-13 23:16:41 +01:00
// Web search extension
require ( './src/serpapi' ) . registerEndpoints ( app , jsonParser ) ;
2023-07-20 19:32:15 +02:00
const tavernUrl = new URL (
( cliArguments . ssl ? 'https://' : 'http://' ) +
( listen ? '0.0.0.0' : '127.0.0.1' ) +
( ':' + server _port )
) ;
const autorunUrl = new URL (
( cliArguments . ssl ? 'https://' : 'http://' ) +
( '127.0.0.1' ) +
( ':' + server _port )
) ;
const setupTasks = async function ( ) {
2023-09-17 13:27:41 +02:00
const version = await getVersion ( ) ;
2023-07-20 19:32:15 +02:00
console . log ( ` SillyTavern ${ version . pkgVersion } ` + ( version . gitBranch ? ` ' ${ version . gitBranch } ' ( ${ version . gitRevision } ) ` : '' ) ) ;
backupSettings ( ) ;
2023-09-08 12:57:27 +02:00
migrateSecrets ( SETTINGS _FILE ) ;
2023-07-20 19:32:15 +02:00
ensurePublicDirectoriesExist ( ) ;
await ensureThumbnailCache ( ) ;
2023-07-21 14:28:32 +02:00
contentManager . checkForNewContent ( ) ;
2023-08-19 16:43:56 +02:00
cleanUploads ( ) ;
2023-07-20 19:32:15 +02:00
2023-09-16 17:48:06 +02:00
await loadTokenizers ( ) ;
2023-09-16 16:28:28 +02:00
await statsHelpers . loadStatsFile ( DIRECTORIES . chats , DIRECTORIES . characters ) ;
2023-07-20 19:32:15 +02:00
// Set up event listeners for a graceful shutdown
process . on ( 'SIGINT' , statsHelpers . writeStatsToFileAndExit ) ;
process . on ( 'SIGTERM' , statsHelpers . writeStatsToFileAndExit ) ;
process . on ( 'uncaughtException' , ( err ) => {
console . error ( 'Uncaught exception:' , err ) ;
statsHelpers . writeStatsToFileAndExit ( ) ;
} ) ;
setInterval ( statsHelpers . saveStatsToFile , 5 * 60 * 1000 ) ;
console . log ( 'Launching...' ) ;
if ( autorun ) open ( autorunUrl . toString ( ) ) ;
2023-08-19 14:58:17 +02:00
2023-08-26 13:17:57 +02:00
console . log ( color . green ( 'SillyTavern is listening on: ' + tavernUrl ) ) ;
2023-07-20 19:32:15 +02:00
if ( listen ) {
2023-08-26 13:17:57 +02:00
console . log ( '\n0.0.0.0 means SillyTavern is listening on all network interfaces (Wi-Fi, LAN, localhost). If you want to limit it only to internal localhost (127.0.0.1), change the setting in config.conf to "listen=false". Check "access.log" file in the SillyTavern directory if you want to inspect incoming connections.\n' ) ;
2023-07-20 19:32:15 +02:00
}
}
if ( listen && ! config . whitelistMode && ! config . basicAuthMode ) {
2023-08-26 13:17:57 +02:00
if ( config . securityOverride ) {
console . warn ( color . red ( "Security has been overridden. If it's not a trusted network, change the settings." ) ) ;
}
2023-07-20 19:32:15 +02:00
else {
2023-08-26 13:17:57 +02:00
console . error ( color . red ( 'Your SillyTavern is currently unsecurely open to the public. Enable whitelisting or basic authentication.' ) ) ;
2023-07-20 19:32:15 +02:00
process . exit ( 1 ) ;
}
}
2023-08-26 13:17:57 +02:00
2023-08-30 20:32:13 +02:00
if ( true === cliArguments . ssl ) {
2023-07-20 19:32:15 +02:00
https . createServer (
{
cert : fs . readFileSync ( cliArguments . certPath ) ,
key : fs . readFileSync ( cliArguments . keyPath )
} , app )
. listen (
2023-08-30 20:32:13 +02:00
Number ( tavernUrl . port ) || 443 ,
2023-07-20 19:32:15 +02:00
tavernUrl . hostname ,
setupTasks
) ;
2023-08-30 20:32:13 +02:00
} else {
2023-07-20 19:32:15 +02:00
http . createServer ( app ) . listen (
2023-08-30 20:32:13 +02:00
Number ( tavernUrl . port ) || 80 ,
2023-07-20 19:32:15 +02:00
tavernUrl . hostname ,
setupTasks
) ;
2023-08-30 20:32:13 +02:00
}
2023-07-20 19:32:15 +02:00
2023-10-24 21:09:55 +02:00
function generateTimestamp ( ) {
const now = new Date ( ) ;
const year = now . getFullYear ( ) ;
const month = String ( now . getMonth ( ) + 1 ) . padStart ( 2 , '0' ) ;
const day = String ( now . getDate ( ) ) . padStart ( 2 , '0' ) ;
const hours = String ( now . getHours ( ) ) . padStart ( 2 , '0' ) ;
const minutes = String ( now . getMinutes ( ) ) . padStart ( 2 , '0' ) ;
const seconds = String ( now . getSeconds ( ) ) . padStart ( 2 , '0' ) ;
return ` ${ year } ${ month } ${ day } - ${ hours } ${ minutes } ${ seconds } ` ;
}
/ * *
*
* @ param { string } name
* @ param { string } chat
* /
function backupChat ( name , chat ) {
try {
const isBackupDisabled = config . disableChatBackup ;
if ( isBackupDisabled ) {
return ;
}
if ( ! fs . existsSync ( DIRECTORIES . backups ) ) {
fs . mkdirSync ( DIRECTORIES . backups ) ;
}
// replace non-alphanumeric characters with underscores
name = sanitize ( name ) . replace ( /[^a-z0-9]/gi , '_' ) . toLowerCase ( ) ;
2023-07-20 19:32:15 +02:00
2023-11-15 00:06:27 +01:00
const backupFile = path . join ( DIRECTORIES . backups , ` chat_ ${ name } _ ${ generateTimestamp ( ) } .jsonl ` ) ;
2023-10-24 21:09:55 +02:00
writeFileAtomicSync ( backupFile , chat , 'utf-8' ) ;
2023-07-20 19:32:15 +02:00
2023-10-24 21:09:55 +02:00
removeOldBackups ( ` chat_ ${ name } _ ` ) ;
} catch ( err ) {
console . log ( ` Could not backup chat for ${ name } ` , err ) ;
2023-07-20 19:32:15 +02:00
}
2023-10-24 21:09:55 +02:00
}
2023-07-20 19:32:15 +02:00
2023-10-24 21:09:55 +02:00
function backupSettings ( ) {
2023-07-20 19:32:15 +02:00
try {
2023-09-16 16:28:28 +02:00
if ( ! fs . existsSync ( DIRECTORIES . backups ) ) {
fs . mkdirSync ( DIRECTORIES . backups ) ;
2023-07-20 19:32:15 +02:00
}
2023-09-16 16:28:28 +02:00
const backupFile = path . join ( DIRECTORIES . backups , ` settings_ ${ generateTimestamp ( ) } .json ` ) ;
2023-07-20 19:32:15 +02:00
fs . copyFileSync ( SETTINGS _FILE , backupFile ) ;
2023-10-24 21:09:55 +02:00
removeOldBackups ( 'settings_' ) ;
2023-07-20 19:32:15 +02:00
} catch ( err ) {
console . log ( 'Could not backup settings file' , err ) ;
}
}
2023-10-24 21:09:55 +02:00
/ * *
* @ param { string } prefix
* /
function removeOldBackups ( prefix ) {
const MAX _BACKUPS = 25 ;
let files = fs . readdirSync ( DIRECTORIES . backups ) . filter ( f => f . startsWith ( prefix ) ) ;
if ( files . length > MAX _BACKUPS ) {
files = files . map ( f => path . join ( DIRECTORIES . backups , f ) ) ;
files . sort ( ( a , b ) => fs . statSync ( a ) . mtimeMs - fs . statSync ( b ) . mtimeMs ) ;
fs . rmSync ( files [ 0 ] ) ;
}
}
2023-07-20 19:32:15 +02:00
function ensurePublicDirectoriesExist ( ) {
2023-09-16 16:28:28 +02:00
for ( const dir of Object . values ( DIRECTORIES ) ) {
2023-07-20 19:32:15 +02:00
if ( ! fs . existsSync ( dir ) ) {
fs . mkdirSync ( dir , { recursive : true } ) ;
}
}
}