Exemple #1
0
 function display()
 {
     $p = new Picture();
     if (!$p->get($this->user->getLogin())) {
         $this->view->assign('getavatar', $this->call('ajaxGetAvatar'));
         $this->view->assign('form', $this->prepareForm(new \modl\Contact()));
     } else {
         $this->view->assign('getavatar', '');
     }
 }
Exemple #2
0
 public function getLogo()
 {
     $p = new \Picture();
     return $p->get($this->origin . $this->node, 120);
 }
Exemple #3
0
 public function getPhoto($size = 'l', $jid = false)
 {
     if ($size == 'email') {
         return BASE_URI . 'cache/' . strtolower($this->jid) . '_email.jpg';
     } else {
         $sizes = array('wall' => array(1920, 1080), 'xxl' => array(1280, 300), 'l' => array(210, false), 'm' => array(120, false), 's' => array(50, false), 'xs' => array(28, false), 'xxs' => array(24, false));
         $p = new \Picture();
         return $p->get($this->jid, $sizes[$size][0], $sizes[$size][1]);
     }
 }
Exemple #4
0
 function prepareMessage(&$message, $jid = null)
 {
     if ($jid != $message->jidto && $jid != $message->jidfrom && $jid != null) {
         return $this->_wrapper;
     }
     $message->jidto = echapJS($message->jidto);
     $message->jidfrom = echapJS($message->jidfrom);
     if (isset($message->html)) {
         $message->body = $message->html;
     } else {
         // We add some smileys...
         $message->convertEmojis();
         $message->addUrls();
         //    $message->body = prepareString(htmlentities($message->body , ENT_COMPAT,'UTF-8'));
     }
     if (isset($message->sticker)) {
         $p = new Picture();
         $sticker = $p->get($message->sticker, false, false, 'png');
         $stickerSize = $p->getSize();
         if ($sticker == false) {
             $r = new Request();
             $r->setTo($message->jidfrom)->setResource($message->resource)->setCid($message->sticker)->request();
         } else {
             $message->sticker = ['url' => $sticker, 'width' => $stickerSize['width'], 'height' => $stickerSize['height']];
         }
     }
     if (isset($message->picture)) {
         $message->sticker = ['url' => $message->picture, 'picture' => true];
     }
     $message->publishedPrepared = prepareDate(strtotime($message->published), true);
     if ($message->delivered) {
         $message->delivered = prepareDate(strtotime($message->delivered), true);
     }
     $date = substr($message->published, 0, 10);
     if ($message->type == 'groupchat') {
         $message->color = stringToColor($message->session . $message->resource . $message->jidfrom . $message->type);
         //fillup $wrapper
         if ($message->body != "") {
             if (!array_key_exists($date, $this->_wrapper)) {
                 $this->_wrapper[$date] = [$message];
             } else {
                 array_push($this->_wrapper[$date], $message);
             }
         }
     } else {
         $msgkey = $message->jidfrom . '>' . substr($message->published, 11, 5);
         //fillup $wrapper
         if (!array_key_exists($date, $this->_wrapper)) {
             $sticker = "";
             if (isset($message->sticker)) {
                 $sticker = "sticker";
             }
             $this->_wrapper[$date] = ['0' . $sticker . '<' . $msgkey => [$message]];
         } else {
             //date contains at least one speaker@time=>msg already
             end($this->_wrapper[$date]);
             $lastkey = key($this->_wrapper[$date]);
             if (substr($lastkey, strpos($lastkey, '<') + 1) == $msgkey && !isset($message->sticker) && strpos($lastkey, "sticker<") === false) {
                 // the previous msg was not a sticker
                 array_push($this->_wrapper[$date][$lastkey], $message);
             } else {
                 $sticker = "";
                 if (isset($message->sticker)) {
                     $sticker = "sticker";
                 }
                 $this->_wrapper[$date][count($this->_wrapper[$date]) . $sticker . '<' . $msgkey] = [$message];
             }
         }
     }
     return $this->_wrapper;
 }
 function insert(Picture $param)
 {
     $parametros = $param->get();
     return $this->db->insert($this->table, $parametros, false);
 }
 public function getPicture()
 {
     /*$result = Db::selectOne('SELECT src FROM photo WHERE user_id = :user_id', array('user_id' => $this->user_id));
     		return new Picture($result);*/
     return Picture::get($this->photo_id);
 }
Exemple #7
0
    $request = \Slim\Slim::getInstance()->request();
    $district = json_decode($request->getBody());
    $districtDAO = new District();
    $districtDAO->update($district);
    echo '{"result":"ok"}';
});
$app->delete('/district', function () {
    $request = \Slim\Slim::getInstance()->request();
    $district = json_decode($request->getBody());
    $districtDAO = new District();
    $districtDAO->delete($district);
    echo '{"result":"ok"}';
});
$app->get('/picture', function () {
    $pictureDAO = new Picture();
    $result = $pictureDAO->get();
    echo json_encode($result);
});
$app->put('/picture', function () {
    $request = \Slim\Slim::getInstance()->request();
    $picture = json_decode($request->getBody());
    $pictureDAO = new Picture();
    $pictureDAO->update($picture);
    echo '{"result":"ok"}';
});
$app->delete('/picture', function () {
    $request = \Slim\Slim::getInstance()->request();
    $picture = json_decode($request->getBody());
    $pictureDAO = new Picture();
    $pictureDAO->delete($picture);
    echo '{"result":"ok"}';