Update api_automation.php
[bugdar.git] / includes / api_attachment.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright ©2002-2007 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 ©2002 - 2007, Blue Static
29 * @version $Revision$
30 * @package Bugdar
31 *
32 */
33 class AttachmentAPI extends BSApi
34 {
35 /**
36 * Fields
37 * @var array
38 */
39 protected $fields = array(
40 'attachmentid' => array(TYPE_UINT, REQ_AUTO),
41 'bugid' => array(TYPE_UINT, REQ_YES),
42 'filename' => array(TYPE_STR, REQ_YES),
43 'mimetype' => array(TYPE_STR, REQ_YES),
44 'filesize' => array(TYPE_INT, REQ_NO),
45 'attachment' => array(TYPE_BIN, REQ_YES),
46 'description' => array(TYPE_STR, REQ_YES),
47 'dateline' => array(TYPE_UINT, REQ_SET),
48 'userid' => array(TYPE_UINT, REQ_YES),
49 'obsolete' => array(TYPE_BOOL, REQ_NO)
50 );
51
52 /**
53 * Database table
54 * @var string
55 */
56 protected $table = 'attachment';
57
58 /**
59 * Table prefix
60 * @var string
61 */
62 protected $prefix = TABLE_PREFIX;
63
64 /**
65 * Set field: dateline
66 */
67 protected function set_dateline()
68 {
69 $this->set('dateline', time());
70 }
71
72 /**
73 * Validate: attachmentid
74 */
75 protected function validate_attachmentid($field)
76 {
77 return $this->_verifyIsNotZero($field);
78 }
79
80 /**
81 * Validate: filename
82 */
83 protected function validate_filename($field)
84 {
85 return $this->_verifyIsNotEmpty($field);
86 }
87 }
88
89 /*=====================================================================*\
90 || ###################################################################
91 || # $HeadURL$
92 || # $Id$
93 || ###################################################################
94 \*=====================================================================*/
95 ?>