Beispiel #1
0
 public function delete()
 {
     # Check dependencies
     self::dependencies(isset($this->database, $this->albumIDs));
     # Call plugins
     $this->plugins(__METHOD__, 0, func_get_args());
     # Init vars
     $error = false;
     # Execute query
     $stmt = $this->database->prepare("SELECT id FROM " . LYCHEE_TABLE_PHOTOS . " WHERE album IN (?)");
     $result = $stmt->execute(array($this->albumIDs));
     if ($result === FALSE) {
         Log::error($this->database, __METHOD__, __LINE__, print_r($this->database->errorInfo(), TRUE));
         return false;
     }
     # For each album delete photo
     while ($row = $stmt->fetchObject()) {
         $photo = new Photo($this->database, $this->plugins, null, $row->id);
         if (!$photo->delete($row->id)) {
             $error = true;
         }
     }
     # Delete albums
     $stmt = $this->database->prepare("DELETE FROM " . LYCHEE_TABLE_ALBUMS . " WHERE id IN (?)");
     $result = $stmt->execute(array($this->albumIDs));
     # Call plugins
     $this->plugins(__METHOD__, 1, func_get_args());
     if (!$result) {
         Log::error($this->database, __METHOD__, __LINE__, print_r($this->database->errorInfo(), TRUE));
         return false;
     }
     if ($error) {
         return false;
     }
     return true;
 }
Beispiel #2
0
 private function deletePhoto()
 {
     Module::dependencies(isset($_POST['photoIDs']));
     $photo = new Photo($this->database, $this->plugins, null, $_POST['photoIDs']);
     echo $photo->delete();
 }
 public function delete()
 {
     # Check dependencies
     self::dependencies(isset($this->database, $this->albumIDs));
     # Call plugins
     $this->plugins(__METHOD__, 0, func_get_args());
     # Init vars
     $error = false;
     # Execute query
     $query = Database::prepare($this->database, "SELECT id FROM ? WHERE album IN (?)", array(LYCHEE_TABLE_PHOTOS, $this->albumIDs));
     $photos = $this->database->query($query);
     # For each album delete photo
     while ($row = $photos->fetch_object()) {
         $photo = new Photo($this->database, $this->plugins, null, $row->id);
         if (!$photo->delete($row->id)) {
             $error = true;
         }
     }
     # Delete albums
     $query = Database::prepare($this->database, "DELETE FROM ? WHERE id IN (?)", array(LYCHEE_TABLE_ALBUMS, $this->albumIDs));
     $result = $this->database->query($query);
     # Call plugins
     $this->plugins(__METHOD__, 1, func_get_args());
     if ($error) {
         return false;
     }
     if (!$result) {
         Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
         return false;
     }
     return true;
 }
Beispiel #4
0
 /**
  * Копирует аватар пользователя из Vkontakte в систему
  */
 protected function _copyAvatar($avatarUrl)
 {
     //Читаем картинку и сохраняем в jpeg в нужную дирректорию
     $im = @imagecreatefromjpeg($avatarUrl);
     //JPEG:
     if ($im == false) {
         $im = @imagecreatefromgif($avatarUrl);
     }
     //GIF
     if ($im == false) {
         $im = @imagecreatefrompng($avatarUrl);
     }
     //png
     if ($im == false) {
         return;
     }
     // Определяем мета-данные картинки
     $usersService = ZendExtra_Controller_Action_Helper_Service::get('Users', 'users');
     $user = $usersService->getCurrentUser();
     $defaultService = ZendExtra_Controller_Action_Helper_Service::get('Default', 'default');
     $extension = $defaultService->getExtensionFromUrl($avatarUrl);
     $imageData = array('user_id' => $user['id'], 'object_type' => ObjectToItem::OBJECT_TYPE_USER, 'object_id' => $user['id'], 'width' => imagesx($im), 'height' => imagesy($im), 'mime_type' => $defaultService->getMimeTypeFromExtension($extension), 'type' => Photo::TYPE_AVATAR);
     $image = new Photo();
     $image->fromArray($imageData);
     if ($image->save() != FALSE) {
         return false;
     }
     // Копируем картинку
     $savePath = ROOT_PATH . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR . 'uploads' . DIRECTORY_SEPARATOR . 'pictures' . DIRECTORY_SEPARATOR . ObjectToItem::OBJECT_TYPE_USER . DIRECTORY_SEPARATOR . $image['id'] . '.' . $extension;
     if (!imagejpeg($im, $savePath)) {
         ImageDestroy($im);
         $image->delete();
         return false;
     }
     ImageDestroy($im);
     return true;
 }
 public function get()
 {
     $this->loadContact();
     switch ($_GET['cop']) {
         case 'logout':
             unset($_SESSION['Contact_User']);
             \PHPWS_Core::home();
             break;
         case 'edit_property':
             $this->checkPermission();
             $this->loadProperty($this->contact->id);
             $this->editProperty($this->contact->id);
             break;
         case 'view_properties':
             $this->checkPermission();
             $this->title = "Properties list";
             $this->propertiesList($this->contact->id);
             break;
         case 'photo_form':
             $photo = new Photo();
             echo $photo->form();
             exit;
             break;
         case 'activate_property':
             $this->checkPermission();
             $this->loadProperty();
             $this->property->setActive(true);
             $this->property->save();
             \PHPWS_Core::goBack();
             break;
         case 'deactivate_property':
             $this->checkPermission();
             $this->loadProperty();
             $this->property->setActive(false);
             $this->property->save();
             \PHPWS_Core::goBack();
             break;
         case 'edit_contact':
             $this->checkPermission();
             $this->editContact();
             break;
         case 'delete_photo':
             // called via ajax
             $this->checkPermission();
             ob_start();
             $photo = new Photo($_GET['id']);
             $photo->delete();
             echo Photo::getThumbs($photo->pid);
             exit;
             break;
         case 'delete_property':
             $this->checkPermission();
             $this->loadProperty();
             // double security
             if ($this->property->contact_id == $this->contact->id) {
                 $this->property->delete();
             }
             \PHPWS_Core::goBack();
             break;
         case 'make_main':
             $photo = new Photo($_GET['id']);
             $photo->makeMain();
             exit;
             break;
         case 'update':
             $this->checkPermission();
             $this->loadProperty();
             $this->property->update();
             \PHPWS_Core::goBack();
             break;
     }
     $this->display();
 }
Beispiel #6
0
 public function get()
 {
     if (!\Current_User::allow('properties')) {
         \Current_User::disallow('Action not allowed.');
     }
     switch ($_GET['aop']) {
         case 'delete_contact':
             if (!\Current_User::authorized('properties')) {
                 \Current_User::disallow();
             } else {
                 $this->loadContact();
                 try {
                     $this->contact->delete();
                 } catch (\Exception $e) {
                     \PHPWS_Error::log($e->getMessage());
                     $this->message = 'An error occurred when trying to delete a contact.';
                 }
             }
         case 'update':
             $this->loadProperty();
             $this->property->update();
             \PHPWS_Core::goBack();
             break;
         case 'show_properties':
             $this->panel->setCurrentTab('properties');
             $this->loadContact();
             $this->contactPropertiesList($_GET['cid']);
             break;
         case 'contacts':
             $this->title = 'Contacts list';
             $this->contactList();
             break;
         case 'photo_form':
             $photo = new Photo();
             echo $photo->form();
             exit;
             break;
         case 'edit_contact':
             $this->loadContact();
             $this->editContact();
             break;
         case 'edit_property':
             $this->loadProperty();
             if (isset($_GET['cid'])) {
                 $this->property->contact_id = $_GET['cid'];
             }
             $this->editProperty();
             break;
         case 'email_contacts':
             $this->emailContacts();
             break;
         case 'activate_contact':
             if (!\Current_User::authorized('properties')) {
                 \Current_User::disallow();
             }
             $this->loadContact();
             $this->contact->setActive(true);
             $this->contact->save();
             \PHPWS_Core::goBack();
             break;
         case 'show_blocked':
             $_SESSION['prop_show_blocked'] = 1;
             $this->viewReported();
             break;
         case 'hide_blocked':
             unset($_SESSION['prop_show_blocked']);
             $this->viewReported();
             break;
         case 'deactivate_contact':
             if (!\Current_User::authorized('properties')) {
                 \Current_User::disallow();
             }
             $this->loadContact();
             $this->contact->setActive(false);
             $this->contact->save();
             \PHPWS_Core::goBack();
             break;
         case 'activate_property':
             if (!\Current_User::authorized('properties')) {
                 \Current_User::disallow();
             }
             $this->loadProperty();
             $this->property->setActive(true);
             $this->property->save();
             \PHPWS_Core::goBack();
             break;
         case 'reported':
             $this->viewReported();
             break;
         case 'deactivate_property':
             if (!\Current_User::authorized('properties')) {
                 \Current_User::disallow();
             }
             $this->loadProperty();
             $this->property->setActive(false);
             $this->property->save();
             \PHPWS_Core::goBack();
             break;
         case 'delete_photo':
             // called via ajax
             if (!\Current_User::authorized('properties')) {
                 \Current_User::disallow();
             }
             ob_start();
             $photo = new Photo($_GET['id']);
             $photo->delete();
             echo Photo::getThumbs($photo->pid);
             exit;
             break;
         case 'make_main':
             $photo = new Photo($_GET['id']);
             $photo->makeMain();
             exit;
             break;
         case 'delete_property':
             if (!\Current_User::authorized('properties')) {
                 \Current_User::disallow();
             }
             $this->loadProperty();
             $this->property->delete();
             \PHPWS_Core::goBack();
             break;
         case 'settings':
             $this->settingsForm();
             break;
         case 'report_view':
             $this->reportView($_GET['id']);
             break;
         case 'block_report':
             $this->blockReport($_GET['id']);
             break;
         case 'ignore_report':
             $this->ignoreReport($_GET['id']);
             \PHPWS_Core::goBack();
             break;
         case 'properties':
         default:
             $this->panel->setCurrentTab('properties');
             $this->title = "Properties list";
             $this->propertiesList();
             break;
     }
     $this->display();
 }
Beispiel #7
0
function delPhoto($param)
{
    $name = clearTextData($param['name']);
    $num_deleted = Photo::delete($name);
    echo $name;
}
Beispiel #8
0
 private function deletePhoto()
 {
     Module::dependencies(isset($_POST['photoIDs']));
     $photo = new Photo(null, $_POST['photoIDs']);
     echo $photo->delete();
 }
Beispiel #9
0
 public function get()
 {
     $this->loadContact();
     switch ($_GET['cop']) {
         case 'logout':
             unset($_SESSION['Contact_User']);
             \PHPWS_Core::home();
             break;
         case 'manager_sign_up':
             if (!self::allowNewUserSignup()) {
                 $this->title = 'Sorry';
                 $this->content = '<p>New manager sign ups are not permitted at this time.</p>';
             } else {
                 $this->newManagerSetup();
             }
             break;
         case 'edit_property':
             $this->checkPermission();
             $this->loadProperty($this->contact->id);
             $this->editProperty($this->contact->id);
             break;
         case 'view_properties':
             $this->checkPermission();
             $this->title = "Properties list";
             $this->propertiesList($this->contact->id);
             break;
         case 'photo_form':
             $photo = new Photo();
             echo $photo->form();
             exit;
             break;
         case 'activate_property':
             $this->checkPermission();
             $this->loadProperty();
             $this->property->setActive(true);
             $this->property->save();
             \PHPWS_Core::goBack();
             break;
         case 'deactivate_property':
             $this->checkPermission();
             $this->loadProperty();
             $this->property->setActive(false);
             $this->property->save();
             \PHPWS_Core::goBack();
             break;
         case 'edit_contact':
             $this->checkPermission();
             $this->editContact();
             break;
         case 'delete_photo':
             // called via ajax
             $this->checkPermission();
             ob_start();
             $photo = new Photo($_GET['id']);
             $photo->delete();
             echo Photo::getThumbs($photo->pid);
             exit;
             break;
         case 'delete_property':
             $this->checkPermission();
             $this->loadProperty();
             // double security
             if ($this->property->contact_id == $this->contact->id) {
                 $this->property->delete();
             }
             \PHPWS_Core::goBack();
             break;
         case 'make_main':
             $photo = new Photo($_GET['id']);
             $photo->makeMain();
             exit;
             break;
         case 'update':
             $this->checkPermission();
             $this->loadProperty();
             $this->property->update();
             \PHPWS_Core::goBack();
             break;
         case 'checkUsername':
             $this->checkUsername();
             exit;
         case 'checkEmail':
             $this->checkEmail();
             exit;
     }
     $this->display();
 }