* @version $id SVN * @access public * @license http://opensource.org/licenses/gpl-3.0.html * News Management */ class news { /* @param * */ public $TDB_NEWS = T_NEWS; // nom de la table. public $ID; public $TITLE; public $HEADER; public $BODY; public $THEME; public $SCALE; public $LEVEL; public $RANGE; public $POSTED_BY; public $POST_DATE; public $PUBLISHED_DATE; public $PEREMPT_DATE; public $IS_NATIONAL; public $STATUT; protected $dispatcher = null; public function __construct() { $this->dispatcher = $GLOBALS['dispatcher']; } public function __call($method, $arguments) { $event = $this->dispatcher->notifyUntil(new sfEvent($this, 'news.extensible_function', array( 'method' => $method, 'arguments' => $arguments ))); if (!$event->isProcessed()) { throw new Exception(sprintf('Call to undefined method %s::%s.', get_class($this), $method)); } return $event->getReturnValue(); } /** * news::_getDate() * date courante et ajout * * @access private * @param int $m chiffre des mois * @param int $d chiffre des jours * @param int $y chiffre des années * @return string $format_date * @return */ private function _getDate($m = 0, $d = 0, $y = 0) { $format_date = mktime(date("H"), date("i"), date("s"), date("m") + $m, date("d") , date("Y"), -1); $format_date = strftime('%Y-%m-%d %H:%M:%S', $format_date); return $format_date; } /** * news::CheckDataIntegrity() * Vérification intégrité des données * * @access public * @param array $table : contient les composants Nécessaires d'une news * @return boolean true * si verifié, sinon string 'message d'erreur' */ public function CheckDataIntegrity($table) { $event = new sfEvent($this, 'news.before_data_check'); $this->dispatcher->filter($event, $table); $table = $event->getReturnValue(); if (strlen($table[0]) < 3) return _t('news','no_title'); if (strlen($table[1]) < 3) return _t('news','no_header'); if (strlen($table[2]) < 3) return _t('news','no_body'); if ($table[3] <= 0 || !is_numeric($table[3])) return _t('news','no_theme'); if ($table[4] <= 0 || !is_numeric($table[4])) return _t('news','no_scale'); $event = new sfEvent($this, 'news.after_data_check', array('data' => $table)); $this->dispatcher->notify($event); return true; } /** * news::AddNews() * Ajout d'une news * * @access public * @param array $table_news : contient les composants d'une news * @param object $sql_object * @return integer $last_id */ public function AddNews($table_news, $sql_object) { $table_news=$sql_object->DBescape($table_news); if ($table_news[0] != '') { $this->TITLE = strip_input(trim($table_news[0]), true); } if ($table_news[1] != '') { $this->HEADER = strip_input(trim($table_news[1]), true); } if ($table_news[2] != '') { $this->BODY = strip_input(trim($table_news[2]), true); } if (is_numeric($table_news[3])) { $this->THEME = $table_news[3]; } if (is_numeric($table_news[4])) { $this->SCALE = $table_news[4]; } if (is_numeric($table_news[5])) { if($table_news[5] == -1) $table_news[5]=0; $this->LEVEL = $table_news[5]; } if (is_numeric($table_news[6])) { $this->RANGE = $table_news[6]; } if (is_numeric($table_news[7])) { $this->POSTED_BY = $table_news[7]; } if ($table_news[9] != '') { $this->IS_NATIONAL = strtoupper($table_news[9]); } if ($table_news[10] != '') { $this->STATUT = strtoupper($table_news[10]); } if ($this->STATUT == 'P') { $this->PUBLISHED_DATE = $this->_getDate(); if ($table_news[8] != '') { $this->PEREMPT_DATE = $table_news[8]; } else { $this->PEREMPT_DATE = '0001-01-01'; } } else { $this->PUBLISHED_DATE = '0001-01-01'; $this->PEREMPT_DATE = '0001-01-01'; } $requete = "INSERT INTO " . $this->TDB_NEWS . " (news_title, news_header, news_body, news_theme, news_scale, " . "news_level, news_range, news_posted_by, news_published_date, " . "news_perempt_date, news_is_national, news_statut, news_date_crea) " . "VALUES('" . $this->TITLE . "', '" . $this->HEADER . "', '" . $this->BODY . "', " . $this->THEME . ", " . $this->SCALE . ", " . $this->LEVEL . ", " . $this->RANGE . ", " . $this->POSTED_BY . ", '" . $this->PUBLISHED_DATE . "' , '" . $this->PEREMPT_DATE . "', '" . $this->IS_NATIONAL . "', '" . $this->STATUT . "', now());"; $last_id = $sql_object->DBInsert ($requete, 1); return $last_id; } /** * news::DeleteNews() * suppression d'une news * * @access public * @param int $ID : identifiant de la news * @param object $sql_object * @return bool $result */ public function DeleteNews($ID, $sql_object) { $this->ID = $ID; $requete = "UPDATE " . $this->TDB_NEWS . " set news_statut='E', news_last_modify=NOW() WHERE news_id='" . $this->ID . "';"; $result = $sql_object->DBQuery($requete); return $result; } /** * news::ModifyNews() * modification d'une news * * @access public * @param integer $ID : identifiant de la news * @param object $sql_object * @param array $table_news : contient les composants d'une news * @return boolean $result */ public function ModifyNews($ID, $table_news, $sql_object) { $table_news=$sql_object->DBescape($table_news); if (is_numeric($ID)) { $this->ID = $ID; } if ($table_news[0] != '') { $this->TITLE = strip_input(trim($table_news[0]), true); } if ($table_news[1] != '') { $this->HEADER = strip_input(trim($table_news[1]), true); } if ($table_news[2] != '') { $this->BODY = strip_input(trim($table_news[2]), true); } if (is_numeric($table_news[3])) { $this->THEME = $table_news[3]; } if (is_numeric($table_news[4])) { $this->SCALE = $table_news[4]; } if (is_numeric($table_news[5])) { if($table_news[5] == -1) $table_news[5]=0; $this->LEVEL = $table_news[5]; } if ($table_news[6] != '') { $this->STATUT = $table_news[6]; } $mask = $this->_HavePublishedDate($table_news[9]); $requete = "UPDATE " . $this->TDB_NEWS . " set news_title='" . $this->TITLE . "', news_header='" . $this->HEADER . "', news_body='" . $this->BODY . "' , news_theme='" . $this->THEME . "', news_scale='" . $this->SCALE . "', news_level='" . $this->LEVEL . "', news_statut='" . $this->STATUT . "', news_last_modify=NOW() " . $mask . " WHERE news_id='" . $this->ID . "';"; $result = $sql_object->DBQuery($requete); return $result; } /** * news::changeRanges() * changes News range * * @access public * @param array : Id (key) and ranges (value) * @param object $sql_object * @return bool $result */ function changeRanges($array, $sql_object) { foreach ($array as $key => $value) { $query = "UPDATE " . $this->TDB_NEWS . " set news_range='".$value."' WHERE news_id='" . $key . "';"; $result = $sql_object->DBQuery($query); } return $result; } /** * news::_HavePublishedDate() * Détermine la date de publication a inserer dans la bdd * * @access private * @param string $current_status : statut actuel de l'actualité * @return string $sql_mask */ private function _HavePublishedDate($current_status) { switch ($this->STATUT) { case 'P': if ($current_status == 'D') $sql_mask = ", news_published_date= NOW()"; else $sql_mask = ''; break; case 'D': $sql_mask = ", news_published_date= '0001-01-01'"; break; default: $sql_mask = ''; } return $sql_mask; } } ?>