Protecting some APIs with an APIKEY.
This commit is contained in:
17
server/lib/apikey.ts
Normal file
17
server/lib/apikey.ts
Normal file
@ -0,0 +1,17 @@
|
||||
/*
|
||||
For internal API, we will generate an api Key that must be provided as
|
||||
GET parameter for every API call.
|
||||
*/
|
||||
|
||||
async function getAPIKey ({ storageManager }: RegisterServerOptions): Promise<string> {
|
||||
let value: string = await storageManager.getData('APIKEY')
|
||||
if (!value) {
|
||||
value = Math.random().toString(36).slice(2, 12)
|
||||
await storageManager.storeData('APIKEY', value)
|
||||
}
|
||||
return value
|
||||
}
|
||||
|
||||
export {
|
||||
getAPIKey
|
||||
}
|
Reference in New Issue
Block a user