remove guest mode

This commit is contained in:
zefie
2025-08-12 01:05:10 -04:00
parent b29dd70f52
commit ad95d5f088
16 changed files with 467 additions and 568 deletions

View File

@@ -55,17 +55,14 @@ class WTVAuthor {
}
pagestoreExists() {
if (!this.isguest) {
if (this.pagestore_dir === null) {
// set pagestore directory local var so we don't call the function every time
var userstore_dir = this.wtvclient.getUserStoreDirectory();
// PageStore
var store_dir = "PageStore" + this.path.sep;
this.pagestore_dir = userstore_dir + store_dir;
}
return this.fs.existsSync(this.pagestore_dir);
}
return true;
if (this.pagestore_dir === null) {
// set pagestore directory local var so we don't call the function every time
var userstore_dir = this.wtvclient.getUserStoreDirectory();
// PageStore
var store_dir = "PageStore" + this.path.sep;
this.pagestore_dir = userstore_dir + store_dir;
}
return this.fs.existsSync(this.pagestore_dir);
}
createPagestore() {

View File

@@ -346,13 +346,11 @@ class WTVClientSessionData {
}
scrapbookExists() {
if (!this.isguest) {
if (this.scrapbook_dir === null) {
var userstore_dir = this.getUserStoreDirectory();
var store_dir = "Scrapbook" + this.path.sep;
this.scrapbook_dir = userstore_dir + store_dir;
}
}
if (this.scrapbook_dir === null) {
var userstore_dir = this.getUserStoreDirectory();
var store_dir = "Scrapbook" + this.path.sep;
this.scrapbook_dir = userstore_dir + store_dir;
}
return this.fs.existsSync(this.scrapbook_dir);
}

View File

@@ -39,18 +39,15 @@ class WTVFavorites {
}
favstoreExists() {
if (!this.isguest) {
if (this.favstore_dir === null) {
// set favstore directory local var so we don't call the function every time
const userstore_dir = this.wtvclient.getUserStoreDirectory();
if (this.favstore_dir === null) {
// set favstore directory local var so we don't call the function every time
const userstore_dir = this.wtvclient.getUserStoreDirectory();
// FavStore
const store_dir = "FavStore" + this.path.sep;
this.favstore_dir = userstore_dir + store_dir;
}
return this.fs.existsSync(this.favstore_dir);
}
return null;
// FavStore
const store_dir = "FavStore" + this.path.sep;
this.favstore_dir = userstore_dir + store_dir;
}
return this.fs.existsSync(this.favstore_dir);
}
folderExists(foldername) {

View File

@@ -56,17 +56,14 @@ class WTVMail {
mailstoreExists() {
if (!this.isguest) {
if (this.mailstore_dir === null) {
// set mailstore directory local var so we don't call the function every time
const userstore_dir = this.wtvclient.getUserStoreDirectory();
// MailStore
const store_dir = "MailStore" + this.path.sep;
this.mailstore_dir = userstore_dir + store_dir;
}
return this.fs.existsSync(this.mailstore_dir);
if (this.mailstore_dir === null) {
// set mailstore directory local var so we don't call the function every time
const userstore_dir = this.wtvclient.getUserStoreDirectory();
// MailStore
const store_dir = "MailStore" + this.path.sep;
this.mailstore_dir = userstore_dir + store_dir;
}
return null;
return this.fs.existsSync(this.mailstore_dir);
}
getSignatureColors(signature = null, sendmail = true) {