Session.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. ###
  3. # @name Session Module
  4. # @copyright 2015 by Tobias Reich
  5. ###
  6. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  7. final class Session extends Module {
  8. public function init($public) {
  9. # Check dependencies
  10. self::dependencies(isset($public));
  11. # Call plugins
  12. $this->plugins(__METHOD__, 0, func_get_args());
  13. # Return settings
  14. $return['config'] = Settings::get();
  15. # Path to Lychee for the server-import dialog
  16. $return['config']['location'] = LYCHEE;
  17. # Remove username and password from response
  18. unset($return['config']['username']);
  19. unset($return['config']['password']);
  20. # Remove identifier from response
  21. unset($return['config']['identifier']);
  22. # Check if login credentials exist and login if they don't
  23. if ($this->noLogin()===true) {
  24. $public = false;
  25. $return['config']['login'] = false;
  26. } else {
  27. $return['config']['login'] = true;
  28. }
  29. if ($public===false) {
  30. # Logged in
  31. $return['status'] = LYCHEE_STATUS_LOGGEDIN;
  32. } else {
  33. # Logged out
  34. $return['status'] = LYCHEE_STATUS_LOGGEDOUT;
  35. # Unset unused vars
  36. unset($return['config']['thumbQuality']);
  37. unset($return['config']['sortingAlbums']);
  38. unset($return['config']['sortingPhotos']);
  39. unset($return['config']['dropboxKey']);
  40. unset($return['config']['login']);
  41. unset($return['config']['location']);
  42. unset($return['config']['imagick']);
  43. unset($return['config']['medium']);
  44. unset($return['config']['plugins']);
  45. }
  46. # Call plugins
  47. $this->plugins(__METHOD__, 1, func_get_args());
  48. return $return;
  49. }
  50. public function login($username, $password) {
  51. # Check dependencies
  52. self::dependencies(isset($username, $password));
  53. # Call plugins
  54. $this->plugins(__METHOD__, 0, func_get_args());
  55. $username = crypt($username, Settings::get()['username']);
  56. $password = crypt($password, Settings::get()['password']);
  57. # Check login with crypted hash
  58. if (Settings::get()['username']===$username&&
  59. Settings::get()['password']===$password) {
  60. $_SESSION['login'] = true;
  61. $_SESSION['identifier'] = Settings::get()['identifier'];
  62. return true;
  63. }
  64. # No login
  65. if ($this->noLogin()===true) return true;
  66. # Call plugins
  67. $this->plugins(__METHOD__, 1, func_get_args());
  68. return false;
  69. }
  70. private function noLogin() {
  71. # Check if login credentials exist and login if they don't
  72. if (Settings::get()['username']===''&&
  73. Settings::get()['password']==='') {
  74. $_SESSION['login'] = true;
  75. $_SESSION['identifier'] = Settings::get()['identifier'];
  76. return true;
  77. }
  78. return false;
  79. }
  80. public function logout() {
  81. # Call plugins
  82. $this->plugins(__METHOD__, 0, func_get_args());
  83. $_SESSION['login'] = null;
  84. $_SESSION['identifier'] = null;
  85. session_destroy();
  86. # Call plugins
  87. $this->plugins(__METHOD__, 1, func_get_args());
  88. return true;
  89. }
  90. }
  91. ?>