File_thumbnail.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?php
  2. /*
  3. * StatusNet - the distributed open-source microblogging tool
  4. * Copyright (C) 2008, 2009, StatusNet, Inc.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. if (!defined('GNUSOCIAL')) { exit(1); }
  20. /**
  21. * Table Definition for file_thumbnail
  22. */
  23. class File_thumbnail extends Managed_DataObject
  24. {
  25. public $__table = 'file_thumbnail'; // table name
  26. public $file_id; // int(4) primary_key not_null
  27. public $url; // varchar(255) unique_key
  28. public $filename; // varchar(255)
  29. public $width; // int(4) primary_key
  30. public $height; // int(4) primary_key
  31. public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
  32. public static function schemaDef()
  33. {
  34. return array(
  35. 'fields' => array(
  36. 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'thumbnail for what URL/file'),
  37. 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of thumbnail'),
  38. 'filename' => array('type' => 'varchar', 'length' => 255, 'description' => 'if stored locally, filename is put here'),
  39. 'width' => array('type' => 'int', 'description' => 'width of thumbnail'),
  40. 'height' => array('type' => 'int', 'description' => 'height of thumbnail'),
  41. 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
  42. ),
  43. 'primary key' => array('file_id', 'width', 'height'),
  44. 'indexes' => array(
  45. 'file_thumbnail_file_id_idx' => array('file_id'),
  46. ),
  47. 'foreign keys' => array(
  48. 'file_thumbnail_file_id_fkey' => array('file', array('file_id' => 'id')),
  49. )
  50. );
  51. }
  52. /**
  53. * Save oEmbed-provided thumbnail data
  54. *
  55. * @param object $data
  56. * @param int $file_id
  57. */
  58. public static function saveNew($data, $file_id) {
  59. if (!empty($data->thumbnail_url)) {
  60. // Non-photo types such as video will usually
  61. // show us a thumbnail, though it's not required.
  62. self::saveThumbnail($file_id,
  63. $data->thumbnail_url,
  64. $data->thumbnail_width,
  65. $data->thumbnail_height);
  66. } else if ($data->type == 'photo') {
  67. // The inline photo URL given should also fit within
  68. // our requested thumbnail size, per oEmbed spec.
  69. self::saveThumbnail($file_id,
  70. $data->url,
  71. $data->width,
  72. $data->height);
  73. }
  74. }
  75. /**
  76. * Fetch an entry by using a File's id
  77. */
  78. static function byFile(File $file) {
  79. $file_thumbnail = self::getKV('file_id', $file->id);
  80. if (!$file_thumbnail instanceof File_thumbnail) {
  81. throw new ServerException(sprintf('No File_thumbnail entry for File id==%u', $file->id));
  82. }
  83. return $file_thumbnail;
  84. }
  85. /**
  86. * Save a thumbnail record for the referenced file record.
  87. *
  88. * FIXME: Add error handling
  89. *
  90. * @param int $file_id
  91. * @param string $url
  92. * @param int $width
  93. * @param int $height
  94. */
  95. static function saveThumbnail($file_id, $url, $width, $height, $filename=null)
  96. {
  97. $tn = new File_thumbnail;
  98. $tn->file_id = $file_id;
  99. $tn->url = $url;
  100. $tn->filename = $filename;
  101. $tn->width = intval($width);
  102. $tn->height = intval($height);
  103. $tn->insert();
  104. return $tn;
  105. }
  106. static function path($filename)
  107. {
  108. // TODO: Store thumbnails in their own directory and don't use File::path here
  109. return File::path($filename);
  110. }
  111. public function getPath()
  112. {
  113. return self::path($this->filename);
  114. }
  115. public function getUrl()
  116. {
  117. if (!empty($this->getFile()->filename)) {
  118. // A locally stored File, so let's generate a URL for our instance.
  119. $url = File::url($this->filename);
  120. if ($url != $this->url) {
  121. // For indexing purposes, in case we do a lookup on the 'url' field.
  122. // also we're fixing possible changes from http to https, or paths
  123. $this->updateUrl($url);
  124. }
  125. return $url;
  126. }
  127. // No local filename available, return the URL we have stored
  128. return $this->url;
  129. }
  130. public function updateUrl($url)
  131. {
  132. $file = File_thumbnail::getKV('url', $url);
  133. if ($file instanceof File_thumbnail) {
  134. throw new ServerException('URL already exists in DB');
  135. }
  136. $sql = 'UPDATE %1$s SET url=%2$s WHERE url=%3$s;';
  137. $result = $this->query(sprintf($sql, $this->__table,
  138. $this->_quote((string)$url),
  139. $this->_quote((string)$this->url)));
  140. if ($result === false) {
  141. common_log_db_error($this, 'UPDATE', __FILE__);
  142. throw new ServerException("Could not UPDATE {$this->__table}.url");
  143. }
  144. return $result;
  145. }
  146. public function delete($useWhere=false)
  147. {
  148. if (!empty($this->filename) && file_exists(File_thumbnail::path($this->filename))) {
  149. $deleted = @unlink(self::path($this->filename));
  150. if (!$deleted) {
  151. common_log(LOG_ERR, sprintf('Could not unlink existing file: "%s"', self::path($this->filename)));
  152. }
  153. }
  154. return parent::delete($useWhere);
  155. }
  156. public function getFile()
  157. {
  158. $file = new File();
  159. $file->id = $this->file_id;
  160. if (!$file->find(true)) {
  161. throw new NoResultException($file);
  162. }
  163. return $file;
  164. }
  165. }