Esempio n. 1
0
 public function user($id, $size = 32)
 {
     $user = db()->table('user')->get('_id', $id)->fetch();
     if (!$user) {
         throw new spitfire\exceptions\PublicException('Invalid user id');
     }
     $icon = $user->picture;
     /*
      * Define the filename of the target, we store the thumbs for the objects
      * inside the same directory they get stored to.
      */
     $file = rtrim(dirname($icon), '\\/') . DIRECTORY_SEPARATOR . $size . '_' . basename($icon);
     if (!in_array($size, self::$thumbSizes)) {
         throw new spitfire\exceptions\PublicException('Invalid size', 1604272250);
     }
     if (!file_exists($file) && file_exists($icon)) {
         $img = new \spitfire\io\Image($icon);
         $img->fitInto($size, $size);
         $img->store($file);
     } elseif (!file_exists($icon)) {
         $file = './assets/img/user.png';
     }
     $this->response->getHeaders()->set('Content-type', 'image/png');
     $this->response->getHeaders()->set('Cache-Control', 'no-transform,public,max-age=3600');
     $this->response->getHeaders()->set('Expires', date('r', time() + 3600));
     if (ob_get_length() !== 0) {
         throw new Exception('Buffer is not empty... Dumping: ' . __(ob_get_contents()), 1604272248);
     }
     return $this->response->setBody(file_get_contents($file));
 }
Esempio n. 2
0
 public function logo()
 {
     if ($this->request->isPost() && isset($_POST['file']) && $_POST['file'] instanceof Upload) {
         $location = $_POST['file']->store();
         $img = new spitfire\io\Image($location);
         $img->resize(500);
         $resized = $img->store('./assets/img/' . basename($location));
         SysSettingModel::setValue('page.logo', substr($resized, strlen('./assets/')));
     }
 }