summaryrefslogtreecommitdiff
path: root/classes/File.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-06-22 22:48:31 +0000
committerZach Copley <zach@controlyourself.ca>2009-06-22 22:48:31 +0000
commitd9bebfd6512353690be8bf8cc596a0656ef48ae9 (patch)
tree774a6e3338fbc09082fcf02f83b272ace0c2c524 /classes/File.php
parentf95dbee7d6ddaca6fcbf159fb80f76ccaf1f9baa (diff)
Attachment upload server and path now configurable
Diffstat (limited to 'classes/File.php')
-rw-r--r--classes/File.php58
1 files changed, 50 insertions, 8 deletions
diff --git a/classes/File.php b/classes/File.php
index 47af1c550..1de136240 100644
--- a/classes/File.php
+++ b/classes/File.php
@@ -30,7 +30,7 @@ require_once INSTALLDIR.'/classes/File_to_post.php';
* Table Definition for file
*/
-class File extends Memcached_DataObject
+class File extends Memcached_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
@@ -38,12 +38,12 @@ class File extends Memcached_DataObject
public $__table = 'file'; // table name
public $id; // int(4) primary_key not_null
public $url; // varchar(255) unique_key
- public $mimetype; // varchar(50)
- public $size; // int(4)
- public $title; // varchar(255)
- public $date; // int(4)
- public $protected; // int(4)
- public $filename; // varchar(255)
+ public $mimetype; // varchar(50)
+ public $size; // int(4)
+ public $title; // varchar(255)
+ public $date; // int(4)
+ public $protected; // int(4)
+ public $filename; // varchar(255)
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
/* Static get */
@@ -116,7 +116,7 @@ class File extends Memcached_DataObject
$x = File::staticGet($file_id);
if (empty($x)) die('Impossible!');
}
-
+
File_to_post::processNew($file_id, $notice_id);
return $x;
}
@@ -145,5 +145,47 @@ class File extends Memcached_DataObject
}
return true;
}
+
+ // where should the file go?
+
+ static function filename($notice_id, $basename)
+ {
+ return $notice_id . '-' . $basename;
+ }
+
+ static function path($filename)
+ {
+ $dir = common_config('attachments', 'dir');
+
+ if ($dir[strlen($dir)-1] != '/') {
+ $dir .= '/';
+ }
+
+ return $dir . $filename;
+ }
+
+ static function url($filename)
+ {
+ $path = common_config('attachments', 'path');
+
+ if ($path[strlen($path)-1] != '/') {
+ $path .= '/';
+ }
+
+ if ($path[0] != '/') {
+ $path = '/'.$path;
+ }
+
+ $server = common_config('attachments', 'server');
+
+ if (empty($server)) {
+ $server = common_config('site', 'server');
+ }
+
+ // XXX: protocol
+
+ return 'http://'.$server.$path.$filename;
+ }
+
}