[feat] nodejs hosting password

This commit is contained in:
kwaroran
2023-05-28 01:33:05 +09:00
parent f0dc33d0d0
commit 74f7625516
3 changed files with 133 additions and 6 deletions

View File

@@ -280,5 +280,7 @@ export const languageEnglish = {
globalRegexScript: "Global Regex",
accessibility: "Accessibility",
sendWithEnter: "Send with Enter Key",
clickToEdit: "Click Text to Edit"
clickToEdit: "Click Text to Edit",
setNodePassword: "Set your password to security",
inputNodePassword: "Input your password. if you can't remember, remove save/__password.txt in your server files and restart the server."
}

View File

@@ -1,6 +1,12 @@
import { language } from "src/lang"
import { alertInput } from "../alert"
let auth:string = null
let authChecked = false
export class NodeStorage{
async setItem(key:string, value:Uint8Array) {
await this.checkAuth()
const da = await fetch('/api/write', {
method: "POST",
body: JSON.stringify({
@@ -8,7 +14,8 @@ export class NodeStorage{
}),
headers: {
'content-type': 'application/json',
'file-path': Buffer.from(key, 'utf-8').toString('hex')
'file-path': Buffer.from(key, 'utf-8').toString('hex'),
'risu-auth': auth
}
})
if(da.status < 200 || da.status >= 300){
@@ -21,10 +28,12 @@ export class NodeStorage{
}
async getItem(key:string):Promise<Buffer> {
await this.checkAuth()
const da = await fetch('/api/read', {
method: "GET",
headers: {
'file-path': Buffer.from(key, 'utf-8').toString('hex')
'file-path': Buffer.from(key, 'utf-8').toString('hex'),
'risu-auth': auth
}
})
const data = await da.json()
@@ -40,8 +49,12 @@ export class NodeStorage{
return Buffer.from(data.content, 'base64')
}
async keys():Promise<string[]>{
await this.checkAuth()
const da = await fetch('/api/list', {
method: "GET",
headers:{
'risu-auth': auth
}
})
const data = await da.json()
if(da.status < 200 || da.status >= 300){
@@ -53,10 +66,12 @@ export class NodeStorage{
return data.content
}
async removeItem(key:string){
await this.checkAuth()
const da = await fetch('/api/list', {
method: "GET",
headers: {
'file-path': Buffer.from(key, 'utf-8').toString('hex')
'file-path': Buffer.from(key, 'utf-8').toString('hex'),
'risu-auth': auth
}
})
if(da.status < 200 || da.status >= 300){
@@ -68,6 +83,58 @@ export class NodeStorage{
}
}
private async checkAuth(){
if(!auth){
auth = localStorage.getItem('risuauth')
}
if(!authChecked){
const data = await (await fetch('/api/password',{
headers: {
'risu-auth': auth ?? ''
}
})).json()
if(data.status === 'unset'){
const input = await digestPassword(await alertInput(language.setNodePassword))
await fetch('/api/set_password',{
method: "POST",
body:JSON.stringify({
password: input
}),
headers: {
'content-type': 'application/json'
}
})
auth = input
localStorage.setItem('risuauth', auth)
}
else if(data.status === 'incorrect'){
while(true){
const input = await digestPassword(await alertInput(language.inputNodePassword))
const data = await (await fetch('/api/password',{
headers: {
'risu-auth': input ?? ''
}
})).json()
if(data.status !== 'unset'){
auth = input
localStorage.setItem('risuauth', auth)
await this.checkAuth()
break
}
}
}
}
}
listItem = this.keys
}
}
async function digestPassword(message:string) {
const encoder = new TextEncoder();
const data = encoder.encode(message);
const hash = Buffer.from(await crypto.subtle.digest("SHA-256", data)).toString('hex');
return hash;
}