Browse Source

Server returns location of lychee

Used for the new server-import dialog
Tobias Reich 10 years ago
parent
commit
653511e6c6
2 changed files with 6 additions and 0 deletions
  1. 2 0
      assets/js/lychee.js
  2. 4 0
      php/modules/Session.php

+ 2 - 0
assets/js/lychee.js

@@ -23,6 +23,7 @@ var lychee = {
 	username: "",
 	checkForUpdates: false,
 	sorting: "",
+	location: "",
 
 	dropbox: false,
 	dropboxKey: '',
@@ -46,6 +47,7 @@ var lychee = {
 				lychee.username = data.config.username || '';
 				lychee.sorting = data.config.sorting || '';
 				lychee.dropboxKey = data.config.dropboxKey || '';
+				lychee.location = data.config.location || '';
 			}
 
 			// No configuration

+ 4 - 0
php/modules/Session.php

@@ -42,6 +42,9 @@ class Session extends Module {
 		$return['config'] = $this->settings;
 		unset($return['config']['password']);
 
+		# Path to Lychee for the server-import dialog
+		$return['config']['location'] = LYCHEE;
+
 		# No login
 		if ($this->settings['username']===''&&$this->settings['password']==='') $return['config']['login'] = false;
 		else $return['config']['login'] = true;
@@ -59,6 +62,7 @@ class Session extends Module {
 			unset($return['config']['sorting']);
 			unset($return['config']['dropboxKey']);
 			unset($return['config']['login']);
+			unset($return['config']['location']);
 
 			# Logged out
 			$return['loggedIn'] = false;