function update($post, $editor) { parent::update($post, $editor, self::OBJECT_CLASS); if (!AuthorizationManager::canUserDo(DB::EDIT_POST, $object)) { throw new Exception("L'utente non è autorizzato ad effettuare questa operazione."); } $p_old = $this->quickLoad($post->getID()); $data = array(); if (is_null($p_old)) { throw new Exception("L'oggetto da modificare non esiste."); } //cerco le differenze e le salvo. if ($p_old->getTitle() != $post->getTitle()) { $data[DB::POST_TITLE] = $post->getTitle(); } if ($p_old->getSubtitle() != $post->getSubtitle()) { $data[DB::POST_SUBTITLE] = $post->getSubtitle(); } if ($p_old->getHeadline() != $post->getHeadline()) { $data[DB::POST_HEADLINE] = $post->getHeadline(); } if ($p_old->getContent() != $post->getContent()) { if ($post->type == Post::NEWS || $post->type == Post::VIDEOREP) { $data[DB::POST_CONTENT] = $post->getContent(); } else { $data[DB::POST_CONTENT] = serialize($post->getContent()); } } if ($p_old->getPlace() != $post->getPlace()) { $data[DB::POST_PLACE] = $post->getPlace(); } if ($p_old->getPlaceName() != $post->getPlaceName()) { $data[DB::POST_PLACE_NAME] = $post->getPlaceName(); } if ($p_old->getTags() != $post->getTags()) { $data[DB::POST_TAGS] = $post->getTags(); } if ($p_old->getCategories() != $post->getCategories()) { // check sulle categorie, eliminazione di quelle che non esistono nel sistema, se vuoto inserimento di quella di default require_once 'manager/CategoryManager.php'; $new_cat = CategoryManager::filterWrongCategories(explode(",", $post->getCategories())); if (count($new_cat) == 0) { $new_cat[] = self::DEFAULT_CATEGORY; } $post->setCategories(Filter::arrayToText($new_cat)); $data[DB::POST_CATEGORIES] = $post->getCategories(); } if ($p_old->isVisible() !== $post->isVisible()) { $data[DB::POST_VISIBLE] = $post->isVisible() ? 1 : 0; } if ($p_old->getPermalink() != $post->getPermalink()) { if ($this->permalinkExists($post->getPermalink())) { throw new Exception("Il permalink inserito esiste già. Riprova."); } $data[DB::POST_PERMALINK] = $post->getPermalink(); } if (count($data) == 0) { throw new Exception("Nessuna modifica da effettuare."); } $modDate = $_SERVER["REQUEST_TIME"]; $data[DB::POST_MODIFICATION_DATE] = date("Y/m/d G:i:s", $modDate); // se mi dicono di fare l'update, cambio modificationDate //salvo la versione precedente e ne tengo traccia. $history_id = $this->saveHistory($p_old, "UPDATED"); $post->setPreviousVersion($history_id); $data[DB::POST_PREVIOUS_VERSION] = $post->getPreviousVersion(); $rs = $this->db->execute($s = Query::generateUpdateStm($this->table, $data, array(new WhereConstraint($this->table->getColumn(DB::POST_ID), Operator::EQUAL, $post->getID()))), $this->table->getName(), $post); //aggiorno lo stato del post (se chi l'ha modificato è un redattore). if (AuthenticationManager::isEditor($editor)) { $post->setEditable(false); $post->setRemovable(false); $this->updateState($post); } if ($this->db->affected_rows() != 1) { throw new Exception("Si è verificato un errore aggiornando il dato. Riprovare."); } //salvo i tag che non esistono if (isset($data[DB::POST_TAGS]) && !is_null($data[DB::POST_TAGS]) && trim($data[DB::POST_TAGS]) != "") { require_once 'manager/TagManager.php'; TagManager::createTags(explode(",", $data[DB::POST_TAGS])); //TODO } return $post->setModificationDate($modDate); }