123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class File_thumbnail extends Managed_DataObject
- {
- public $__table = 'file_thumbnail';
- public $file_id;
- public $url;
- public $filename;
- public $width;
- public $height;
- public $modified;
- public static function schemaDef()
- {
- return array(
- 'fields' => array(
- 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'thumbnail for what URL/file'),
- 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of thumbnail'),
- 'filename' => array('type' => 'varchar', 'length' => 255, 'description' => 'if stored locally, filename is put here'),
- 'width' => array('type' => 'int', 'description' => 'width of thumbnail'),
- 'height' => array('type' => 'int', 'description' => 'height of thumbnail'),
- 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
- ),
- 'primary key' => array('file_id', 'width', 'height'),
- 'indexes' => array(
- 'file_thumbnail_file_id_idx' => array('file_id'),
- ),
- 'foreign keys' => array(
- 'file_thumbnail_file_id_fkey' => array('file', array('file_id' => 'id')),
- )
- );
- }
-
- public static function saveNew($data, $file_id) {
- if (!empty($data->thumbnail_url)) {
-
-
- self::saveThumbnail($file_id,
- $data->thumbnail_url,
- $data->thumbnail_width,
- $data->thumbnail_height);
- } else if ($data->type == 'photo') {
-
-
- self::saveThumbnail($file_id,
- $data->url,
- $data->width,
- $data->height);
- }
- }
-
- static function byFile(File $file) {
- $file_thumbnail = self::getKV('file_id', $file->id);
- if (!$file_thumbnail instanceof File_thumbnail) {
- throw new ServerException(sprintf('No File_thumbnail entry for File id==%u', $file->id));
- }
- return $file_thumbnail;
- }
-
- static function saveThumbnail($file_id, $url, $width, $height, $filename=null)
- {
- $tn = new File_thumbnail;
- $tn->file_id = $file_id;
- $tn->url = $url;
- $tn->filename = $filename;
- $tn->width = intval($width);
- $tn->height = intval($height);
- $tn->insert();
- return $tn;
- }
- static function path($filename)
- {
-
- return File::path($filename);
- }
- public function getPath()
- {
- return self::path($this->filename);
- }
- public function getUrl()
- {
- if (!empty($this->getFile()->filename)) {
-
- $url = File::url($this->filename);
- if ($url != $this->url) {
-
-
- $this->updateUrl($url);
- }
- return $url;
- }
-
- return $this->url;
- }
- public function updateUrl($url)
- {
- $file = File_thumbnail::getKV('url', $url);
- if ($file instanceof File_thumbnail) {
- throw new ServerException('URL already exists in DB');
- }
- $sql = 'UPDATE %1$s SET url=%2$s WHERE url=%3$s;';
- $result = $this->query(sprintf($sql, $this->__table,
- $this->_quote((string)$url),
- $this->_quote((string)$this->url)));
- if ($result === false) {
- common_log_db_error($this, 'UPDATE', __FILE__);
- throw new ServerException("Could not UPDATE {$this->__table}.url");
- }
- return $result;
- }
- public function delete($useWhere=false)
- {
- if (!empty($this->filename) && file_exists(File_thumbnail::path($this->filename))) {
- $deleted = @unlink(self::path($this->filename));
- if (!$deleted) {
- common_log(LOG_ERR, sprintf('Could not unlink existing file: "%s"', self::path($this->filename)));
- }
- }
- return parent::delete($useWhere);
- }
- public function getFile()
- {
- $file = new File();
- $file->id = $this->file_id;
- if (!$file->find(true)) {
- throw new NoResultException($file);
- }
- return $file;
- }
- }
|