feat: add option to disable temporary users

This commit is contained in:
Nariman Jelveh
2024-07-18 12:59:42 -04:00
committed by GitHub
parent ba50d0f96d
commit f9333b3d1e
5 changed files with 12 additions and 4 deletions
+3
View File
@@ -31,6 +31,7 @@ window.puter_gui_enabled = true;
* @param {string} [options.api_origin='https://api.puter.com'] - The origin URL for the API.
* @param {number} [options.max_item_name_length=500] - Maximum allowed length for an item name.
* @param {boolean} [options.require_email_verification_to_publish_website=true] - Flag to decide whether email verification is required to publish a website.
* @param {boolean} [options.disable_temp_users=false] - Flag to disable auto-generated temporary users.
*
* @property {string} [options.app_domain] - Extracted domain name from gui_origin. It's derived automatically if not provided.
* @property {string} [window.gui_env] - The environment in which the GUI is running (e.g., "dev" or "prod").
@@ -54,6 +55,7 @@ window.gui = async function(options){
window.api_origin = options.api_origin ?? "https://api.puter.com";
window.max_item_name_length = options.max_item_name_length ?? 500;
window.require_email_verification_to_publish_website = options.require_email_verification_to_publish_website ?? true;
window.disable_temp_users = options.disable_temp_users ?? false;
// DEV: Load the initgui.js file if we are in development mode
if(!window.gui_env || window.gui_env === "dev"){
@@ -73,6 +75,7 @@ window.gui = async function(options){
// 🚀 Launch the GUI 🚀
window.initgui(options);
}
/**
+2 -2
View File
@@ -831,7 +831,7 @@ window.initgui = async function(options){
// -------------------------------------------------------------------------------------
// Un-authed but not first visit -> try to log in/sign up
// -------------------------------------------------------------------------------------
if(!window.is_auth() && !window.first_visit_ever){
if(!window.is_auth() && (!window.first_visit_ever || window.disable_temp_users)){
if(window.logged_in_users.length > 0){
UIWindowSessionList();
}
@@ -849,7 +849,7 @@ window.initgui = async function(options){
// -------------------------------------------------------------------------------------
// Un-authed and first visit ever -> create temp user
// -------------------------------------------------------------------------------------
else if(!window.is_auth() && window.first_visit_ever){
else if(!window.is_auth() && window.first_visit_ever && !window.disable_temp_users){
let referrer;
try{
referrer = new URL(window.location.href).pathname;