File_to_post.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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('STATUSNET') && !defined('LACONICA')) { exit(1); }
  20. require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
  21. /**
  22. * Table Definition for file_to_post
  23. */
  24. class File_to_post extends Managed_DataObject
  25. {
  26. ###START_AUTOCODE
  27. /* the code below is auto generated do not remove the above tag */
  28. public $__table = 'file_to_post'; // table name
  29. public $file_id; // int(4) primary_key not_null
  30. public $post_id; // int(4) primary_key not_null
  31. public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
  32. /* the code above is auto generated do not remove the tag below */
  33. ###END_AUTOCODE
  34. public static function schemaDef()
  35. {
  36. return array(
  37. 'fields' => array(
  38. 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of URL/file'),
  39. 'post_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of the notice it belongs to'),
  40. 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
  41. ),
  42. 'primary key' => array('file_id', 'post_id'),
  43. 'foreign keys' => array(
  44. 'file_to_post_file_id_fkey' => array('file', array('file_id' => 'id')),
  45. 'file_to_post_post_id_fkey' => array('notice', array('post_id' => 'id')),
  46. ),
  47. 'indexes' => array(
  48. 'post_id_idx' => array('post_id'),
  49. ),
  50. );
  51. }
  52. function processNew($file_id, $notice_id) {
  53. static $seen = array();
  54. if (empty($seen[$notice_id]) || !in_array($file_id, $seen[$notice_id])) {
  55. $f2p = File_to_post::pkeyGet(array('post_id' => $notice_id,
  56. 'file_id' => $file_id));
  57. if (empty($f2p)) {
  58. $f2p = new File_to_post;
  59. $f2p->file_id = $file_id;
  60. $f2p->post_id = $notice_id;
  61. $f2p->insert();
  62. $f = File::getKV($file_id);
  63. if (!empty($f)) {
  64. $f->blowCache();
  65. }
  66. }
  67. if (empty($seen[$notice_id])) {
  68. $seen[$notice_id] = array($file_id);
  69. } else {
  70. $seen[$notice_id][] = $file_id;
  71. }
  72. }
  73. }
  74. function delete($useWhere=false)
  75. {
  76. $f = File::getKV('id', $this->file_id);
  77. if (!empty($f)) {
  78. $f->blowCache();
  79. }
  80. return parent::delete($useWhere);
  81. }
  82. }