1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
<?php
/**
* ArtifactFile.class - Class to handle files within an artifact
*
* Copyright 1999-2001 (c) VA Linux Systems
*
* @version $Id: ArtifactFile.class 5527 2006-06-05 20:10:10Z lo-lan-do $
*
* This file is part of GForge.
*
* GForge is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GForge is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GForge; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US
*/
require_once('common/include/Error.class');
/**
* Factory method which creates an ArtifactFile from an artifactFile ID
*
* @param int The artifactFile ID
* @param array The result array, if it's passed in
* @return object Artifact object
*/
function &artifactfile_get_object($artifact_file_id,$data=false) {
global $ARTIFACTFILE_OBJ;
if (!isset($ARTIFACTFILE_OBJ["_".$artifact_file_id."_"])) {
if ($data) {
//the db result handle was passed in
} else {
$res=db_query("SELECT * FROM artifact_file_user_vw WHERE id='$artifact_file_id'");
if (db_numrows($res) <1 ) {
$ARTIFACTFILE_OBJ["_".$artifact_file_id."_"]=false;
return false;
}
$data =& db_fetch_array($res);
}
$Artifact =& artifact_get_object($data["artifact_id"]);
$ARTIFACTFILE_OBJ["_".$artifact_file_id."_"]= new ArtifactFile($Artifact,$data);
}
return $ARTIFACTFILE_OBJ["_".$artifact_file_id."_"];
}
class ArtifactFile extends Error {
/**
* The artifact object.
*
* @var object $Artifact.
*/
var $Artifact; //object
/**
* Array of file data
*
* @var array $data_array
*/
var $data_array;
/**
* ArtifactFile - constructor.
*
* @param object The Artifact object.
* @param array (all fields from artifact_file_user_vw) OR id from database.
* @return boolean success.
*/
function ArtifactFile(&$Artifact, $data=false) {
$this->Error();
//was Artifact legit?
if (!$Artifact || !is_object($Artifact)) {
$this->setError('ArtifactFile: No Valid Artifact');
return false;
}
//did ArtifactType have an error?
if ($Artifact->isError()) {
$this->setError('ArtifactFile: '.$Artifact->getErrorMessage());
return false;
}
$this->Artifact =& $Artifact;
if ($data) {
if (is_array($data)) {
$this->data_array =& $data;
return true;
} else {
if (!$this->fetchData($data)) {
return false;
} else {
return true;
}
}
}
}
/**
* create - create a new item in the database.
*
* @param string Filename of the item.
* @param string Item filetype.
* @param string Item filesize.
* @param binary Binary item data.
* @param string Item description.
* @return id on success / false on failure.
*/
function create($filename, $filetype, $filesize, $bin_data, $description='None') {
global $Language;
// Some browsers don't supply mime type if they don't know it
if (!$filetype) {
// Let's be on safe side?
$filetype = 'application/octet-stream';
}
//
// data validation
//
if (!$filename || !$filetype || !$filesize || !$bin_data) {
//echo '<P>|'.$filename.'|'.$filetype.'|'.$filesize.'|'.$bin_data.'|';
$this->setError($Language->getText('tracker_artifactfile','required_fields'));
return false;
}
if (session_loggedin()) {
$userid=user_getid();
} else {
$userid=100;
}
// If $filetype is "text/plain", $bin_data convert UTF-8 encoding.
if (strcasecmp($filetype,"text/plain") === 0 &&
function_exists('mb_convert_encoding') &&
function_exists('mb_detect_encoding')) {
$bin_data = mb_convert_encoding($bin_data,'UTF-8',mb_detect_encoding($bin_data, "auto"));
$filesize = strlen($bin_data);
}
db_begin();
$res=db_query("INSERT INTO artifact_file
(artifact_id,description,bin_data,filename,filesize,filetype,adddate,submitted_by)
VALUES
('".$this->Artifact->getID()."','$description','". base64_encode($bin_data) ."','$filename',
'$filesize','$filetype','". time() ."','$userid')");
$id=db_insertid($res,'artifact_file','id');
if (!$res || !$id) {
db_rollback();
$this->setError('ArtifactFile: '.db_error());
return false;
} else {
/*
//
// skip this unless we need it later - save a db query
//
//
// Now set up our internal data structures
//
if (!$this->fetchData($id)) {
db_rollback();
return false;
}
*/
db_commit();
$this->Artifact->addHistory('File Added',$id.': '.$filename);
$this->clearError();
return $id;
}
}
/**
* delete - delete this artifact file from the db.
*
* @return boolean success.
*/
function delete() {
if (!$this->Artifact->ArtifactType->userIsTechnician()) {
$this->setPermissionDeniedError();
return false;
}
$res=db_query("DELETE FROM artifact_file WHERE id='". $this->getID() ."'");
if (!$res || db_affected_rows($res) < 1) {
$this->setError('ArtifactFile: Unable to Delete');
return false;
} else {
$this->Artifact->addHistory('File Deleted',$this->getID().': '.$this->getName());
return true;
}
}
/**
* fetchData - re-fetch the data for this ArtifactFile from the database.
*
* @param int The file_id.
* @return boolean success.
*/
function fetchData($id) {
$res=db_query("SELECT * FROM artifact_file_user_vw WHERE id='$id'");
if (!$res || db_numrows($res) < 1) {
$this->setError('ArtifactFile: Invalid ArtifactFile ID');
return false;
}
$this->data_array =& db_fetch_array($res);
db_free_result($res);
return true;
}
/**
* getArtifact - get the Artifact Object this ArtifactFile is associated with.
*
* @return object Artifact.
*/
function &getArtifact() {
return $this->Artifact;
}
/**
* getID - get this ArtifactFile's ID.
*
* @return int The id #.
*/
function getID() {
return $this->data_array['id'];
}
/**
* getName - get the filename.
*
* @return string filename.
*/
function getName() {
return $this->data_array['filename'];
}
/**
* getType - get the type.
*
* @return string type.
*/
function getType() {
return $this->data_array['filetype'];
}
/**
* getData - get the binary data from the db.
*
* @return binary.
*/
function &getData() {
return base64_decode($this->data_array['bin_data']);
}
/**
* getSize - get the size.
*
* @return int size.
*/
function getSize() {
return $this->data_array['filesize'];
}
/**
* getDescription - get the description.
*
* @return string description.
*/
function getDescription() {
return $this->data_array['description'];
}
/**
* getDate - get the date file was added.
*
* @return int unix time.
*/
function getDate() {
return $this->data_array['adddate'];
}
/**
* getSubmittedBy - get the user_id of the submitter.
*
* @return int user_id.
*/
function getSubmittedBy() {
return $this->data_array['submitted_by'];
}
/**
* getSubmittedRealName - get the real name of the submitter.
*
* @return string name.
*/
function getSubmittedRealName() {
return $this->data_array['realname'];
}
/**
* getSubmittedUnixName - get the unix name of the submitter.
*
* @return string unixname.
*/
function getSubmittedUnixName() {
return $this->data_array['user_name'];
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
?>
|