Happy 2009! Updating copyright years.
[bugdar.git] / includes / api_attachment.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright (c)2004-2009 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 require_once ISSO . '/Api.php';
23
24 /**
25 * API: Attachment
26 *
27 * @author Blue Static
28 * @copyright Copyright (c)2004 - 2009, Blue Static
29 * @package Bugdar
30 *
31 */
32 class AttachmentAPI extends BSApi
33 {
34 /**
35 * Fields
36 * @var array
37 */
38 protected $fields = array(
39 'attachmentid' => array(TYPE_UINT, REQ_AUTO),
40 'bugid' => array(TYPE_UINT, REQ_YES),
41 'filename' => array(TYPE_STR, REQ_YES),
42 'mimetype' => array(TYPE_STR, REQ_YES),
43 'filesize' => array(TYPE_INT, REQ_NO),
44 'attachment' => array(TYPE_BIN, REQ_YES),
45 'description' => array(TYPE_STR, REQ_YES),
46 'dateline' => array(TYPE_UINT, REQ_SET),
47 'userid' => array(TYPE_UINT, REQ_YES),
48 'obsolete' => array(TYPE_BOOL, REQ_NO)
49 );
50
51 /**
52 * Database table
53 * @var string
54 */
55 protected $table = 'attachment';
56
57 /**
58 * Table prefix
59 * @var string
60 */
61 protected $prefix = TABLE_PREFIX;
62
63 /**
64 * Set field: dateline
65 */
66 protected function set_dateline()
67 {
68 $this->set('dateline', time());
69 }
70
71 /**
72 * Validate: attachmentid
73 */
74 protected function validate_attachmentid($field)
75 {
76 return $this->_verifyIsNotZero($field);
77 }
78
79 /**
80 * Validate: filename
81 */
82 protected function validate_filename($field)
83 {
84 return $this->_verifyIsNotEmpty($field);
85 }
86 }
87
88 ?>