X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fvalidations%2Fevts.inc.php;h=41896cb74e22835ed8ddf2636fdeef829c870503;hb=2553b7686e0678b8e27858a7c377e73ecb410aec;hp=9cca8b5312b80394e24041aa01583b74a4edf40d;hpb=612a2d8ae13ee29edb3279132877b63db18a5da5;p=platal.git diff --git a/include/validations/evts.inc.php b/include/validations/evts.inc.php index 9cca8b5..41896cb 100644 --- a/include/validations/evts.inc.php +++ b/include/validations/evts.inc.php @@ -1,6 +1,6 @@ titre = $_titre; $this->texte = $_texte; $this->pmin = $_pmin; $this->pmax = $_pmax; $this->peremption = $_peremption; $this->comment = $_comment; + if ($upload) { + $this->readImage($upload); + } + } + + // }}} + // {{{ function readImage() + + private function readImage(PlUpload &$upload) + { + if ($upload->exists() && $upload->isType('image')) { + list($this->imgx, $this->imgy, $this->imgtype) = $upload->imageInfo(); + $this->img = $upload->getContents(); + $upload->rm(); + } } // }}} @@ -73,12 +93,25 @@ class EvtReq extends Validate $this->pmin = Env::i('promo_min'); $this->pmax = Env::i('promo_max'); $this->peremption = Env::v('peremption'); + if (@$_FILES['image']['tmp_name']) { + $upload = PlUpload::get($_FILES['image'], S::user()->login(), 'event'); + if (!$upload) { + $this->trigError("Impossible de télécharger le fichier"); + } elseif (!$upload->isType('image')) { + $page->trigError('Le fichier n\'est pas une image valide au format JPEG, GIF ou PNG'); + $upload->rm(); + } elseif (!$upload->resizeImage(200, 300, 100, 100, 32284)) { + $page->trigError('Impossible de retraiter l\'image'); + } else { + $this->readImage($upload); + } + } return true; } // }}} // {{{ function _mail_subj - + protected function _mail_subj() { return "[Polytechnique.org/EVENEMENTS] Proposition d'événement"; @@ -101,12 +134,33 @@ class EvtReq extends Validate public function commit() { - return XDB::execute( - "INSERT INTO evenements + if (XDB::execute("INSERT INTO evenements SET user_id = {?}, creation_date=NOW(), titre={?}, texte={?}, - peremption={?}, promo_min={?}, promo_max={?}, flags=CONCAT(flags,',valide')", - $this->uid, $this->titre, $this->texte, - $this->peremption, $this->pmin, $this->pmax); + peremption={?}, promo_min={?}, promo_max={?}, flags=CONCAT(flags,',valide,wiki')", + $this->user->id(), $this->titre, $this->texte, + $this->peremption, $this->pmin, $this->pmax)) { + $eid = XDB::insertId(); + if ($this->img) { + XDB::execute("INSERT INTO evenements_photo + SET eid = {?}, attachmime = {?}, x = {?}, y = {?}, attach = {?}", + XDB::insertId(), $this->imgtype, $this->imgx, $this->imgy, $this->img); + } + global $globals; + if ($globals->banana->event_forum) { + require_once 'banana/forum.inc.php'; + $banana = new ForumsBanana($this->user); + $post = $banana->post($globals->banana->event_forum, + $globals->banana->event_reply, + $this->titre, MiniWiki::wikiToText($this->texte, false, 0, 80)); + if ($post != -1) { + XDB::execute("UPDATE evenements + SET creation_date = creation_date, post_id = {?} + WHERE id = {?}", $post, $eid); + } + } + return true; + } + return false; } // }}}