Пример #1
0
 /**
  * Reccursively delete all files in $dir
  * 
  * @param string $dir
  * @author Thibaud Rohmer
  */
 public function rec_del($dir)
 {
     if (is_file($dir)) {
         return unlink($dir);
     }
     $dirs = Menu::list_dirs($dir);
     $files = Menu::list_files($dir, false, true);
     foreach ($dirs as $d) {
         AdminDelete::rec_del($d);
     }
     foreach ($files as $f) {
         unlink($f);
     }
     return rmdir($dir);
 }
Пример #2
0
 /**
  * Create admin page
  * 
  * @author Thibaud Rohmer
  */
 public function __construct()
 {
     /// Check that current user is an admin or an uploader
     if (!(CurrentUser::$admin || CurrentUser::$uploader)) {
         return;
     }
     /// Get actions available for Uploaders too
     if (isset($_GET['a'])) {
         switch ($_GET['a']) {
             case "Abo":
                 $this->page = new AdminAbout();
                 break;
             case "Upl":
                 if (isset($_POST['path'])) {
                     AdminUpload::upload();
                     CurrentUser::$path = File::r2a(stripslashes($_POST['path']));
                 }
                 $this->page = new AdminFiles();
                 break;
             case "Mov":
                 if (isset($_POST['pathFrom'])) {
                     try {
                         CurrentUser::$path = File::r2a(dirname(stripslashes($_POST['pathFrom'])));
                     } catch (Exception $e) {
                         CurrentUser::$path = Settings::$photos_dir;
                     }
                 }
                 AdminMove::move();
                 if (isset($_POST['move']) && $_POST['move'] == "rename") {
                     try {
                         //			if(is_dir(File::r2a(stripslashes($_POST['pathFrom'])))){
                         //				CurrentUser::$path = dirname(File::r2a(stripslashes($_POST['pathFrom'])))."/".stripslashes($_POST['pathTo']);
                         //			}
                     } catch (Exception $e) {
                         CurrentUser::$path = Settings::$photos_dir;
                     }
                 }
                 $this->page = new AdminFiles();
                 break;
             case "Del":
                 if (isset($_POST['del'])) {
                     CurrentUser::$path = dirname(File::r2a(stripslashes($_POST['del'])));
                     AdminDelete::delete();
                 }
                 $this->page = new AdminFiles();
                 break;
         }
     }
     /// Check that current user is an admin
     if (!CurrentUser::$admin) {
         return;
     }
     /// Get action
     if (isset($_GET['a'])) {
         switch ($_GET['a']) {
             case "Sta":
                 $this->page = new AdminStats();
                 break;
             case "Acc":
                 if (isset($_POST['old_password'])) {
                     Account::edit($_POST['login'], $_POST['old_password'], $_POST['password'], $_POST['name'], $_POST['email']);
                 }
                 if (isset($_POST['login'])) {
                     $this->page = new Account($_POST['login']);
                 } else {
                     $this->page = CurrentUser::$account;
                 }
                 break;
             case "GC":
                 Group::create($_POST['group']);
                 $this->page = new JSAccounts();
                 break;
             case "AAc":
                 Account::create($_POST['login'], $_POST['password'], $_POST['verif']);
                 $this->page = new JSAccounts();
                 break;
             case "AGA":
                 $a = new Account($_POST['acc']);
                 $a->add_group($_POST['group']);
                 $a->save();
                 $this->page = CurrentUser::$account;
                 break;
             case "AGR":
                 $a = new Account($_POST['acc']);
                 $a->remove_group($_POST['group']);
                 $a->save();
                 $this->page = CurrentUser::$account;
                 break;
             case "ADe":
                 Account::delete($_POST['name']);
                 $this->page = new JSAccounts();
                 break;
             case "GDe":
                 Group::delete($_POST['name']);
                 $this->page = new JSAccounts();
                 break;
             case "CDe":
                 CurrentUser::$path = File::r2a($_POST['image']);
                 Comments::delete($_POST['image'], $_POST['date']);
                 $this->page = new MainPage();
                 break;
             case "Fil":
                 $this->page = new AdminFiles();
                 break;
             case "JS":
                 break;
             case "EdA":
                 $this->page = new JSAccounts();
                 break;
             case "GAl":
                 if (isset($_POST['path'])) {
                     Settings::gener_all(File::r2a(stripslashes($_POST['path'])));
                 }
             case "Set":
                 if (isset($_POST['name'])) {
                     Settings::set();
                 }
                 $this->page = new Settings();
                 break;
         }
     }
     if (!isset($this->page)) {
         $this->page = new AdminStats();
     }
     /// Create menu
     $this->menu = new AdminMenu();
 }