]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialProfileExtensions/classes/ProfileExtensionField.php
142b70230b010a93536640df519e93d9584e8f44
[quix0rs-gnu-social.git] / plugins / GNUsocialProfileExtensions / classes / ProfileExtensionField.php
1 <?php
2 /**
3  * GNU Social
4  * Copyright (C) 2010, Free Software Foundation, Inc.
5  *
6  * PHP version 5
7  *
8  * LICENCE:
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Widget
23  * @package   GNU Social
24  * @author    Max Shinn <trombonechamp@gmail.com>
25  * @copyright 2010 Free Software Foundation, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
27  */
28
29 if (!defined('STATUSNET')) {
30     exit(1);
31 }
32
33 require_once INSTALLDIR . '/classes/Memcached_DataObject.php';
34
35 class GNUsocialPhoto extends Memcached_DataObject
36 {
37     public $__table = 'GNUsocialPhoto';
38     public $id;         // int(11)
39     public $_id;  // int(11)
40     public $album_id;   // int(11)
41     public $uri;        // varchar(512)
42     public $thumb_uri;  // varchar(512)
43         public $title;      // varchar(512)
44         public $photo_description; // text
45     
46
47     /**
48      *
49      * k key
50      * v value
51      */
52     function staticGet($k,$v=NULL)
53     {
54         return Memcached_DataObject::staticGet('GNUsocialPhoto',$k,$v);
55     }
56
57 /*    function delete()
58     {
59         if(!unlink(INSTALLDIR . $this->thumb_uri)) {
60             return false;
61         }
62         if(!unlink(INSTALLDIR . $this->path)) {
63             return false;
64         }
65         return parent::delete();
66     } */
67
68
69     /*
70      * TODO: Foriegn key on album_id.
71      */
72     function table()
73     {
74         return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
75                      'notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
76                      'album_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
77                      'uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
78                      'thumb_uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
79                      'title' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
80                      'photo_description' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL);
81     }
82     
83     function keys()
84     {
85         return array_keys($this->keyTypes());
86     }
87
88     function keyTypes()
89     {
90         return array('notice_id' => 'K');
91     }
92
93     function sequenceKey()
94     {
95         return array(false, false, false);
96     }
97
98     function saveNew($profile_id, $album_id, $thumb_uri, $uri, $source, $insert_now, $title = null, $photo_description = null)
99     {
100         $photo = new GNUsocialPhoto();
101         $photo->thumb_uri = $thumb_uri;
102         $photo->uri = $uri;
103                 $photo->album_id = $album_id;
104                 if(!empty($title)) $photo->title = $title;
105                 if(!empty($photo_description)) $photo->photo_description = (string)$photo_description;
106
107         if($insert_now) {
108             $notice = Notice::saveNew($profile_id, $uri, $source);
109             $photo->notice_id = $notice->id;
110             $photo_id = $photo->insert();
111             if (!$photo_id) {
112                 common_log_db_error($photo, 'INSERT', __FILE__);
113                 throw new ServerException(_m('Problem Saving Photo.'));
114             }
115         } else {
116             GNUsocialPhotoTemp::$tmp = $photo;
117             Notice::saveNew($profile_id, $uri, $source);
118         }
119     }
120
121     function getPageLink()
122     {
123         return '/photo/' . $this->id;
124     }
125
126     /*
127      * TODO: -Sanitize input
128      * @param int page_id The desired page of the gallery to show.
129      * @param int album_id The id of the album to get photos from.
130      * @param int gallery_size The number of thumbnails to show per page in the gallery.
131      * @return array Array of GNUsocialPhotos for this gallery page.
132      */
133     static function getGalleryPage($page_id, $album_id, $gallery_size)
134     {
135                 $page_offset = ($page_id-1) * $gallery_size; 
136         $sql = 'SELECT * FROM GNUsocialPhoto WHERE album_id = ' . $album_id . 
137                ' ORDER BY notice_id LIMIT ' . $page_offset . ',' . $gallery_size;
138         $photo = new GNUsocialPhoto();
139         $photo->query($sql);
140         $photos = array();
141
142         while ($photo->fetch()) {
143             $photos[] = clone($photo);
144         }
145
146         return $photos;
147     }
148 }