]>
git.p6c8.net - jirafeau_mojo42.git/blob - lib/functions.php
3 * Jirafeau, your web file repository
4 * Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
5 * Copyright (C) 2012 Jerome Jutteau <j.jutteau@gmail.com>
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 * transforms a php.ini string representing a value in an integer
23 * @param $value the value from php.ini
24 * @returns an integer for this value
26 function jirafeau_ini_to_bytes($value) {
27 $modifier = substr($value, -1);
28 $bytes = substr($value, 0, -1);
29 switch(strtoupper($modifier)) {
47 * gets the maximum upload size according to php.ini
48 * @returns the maximum upload size
50 function jirafeau_get_max_upload_size() {
51 return min(jirafeau_ini_to_bytes(ini_get('post_max_size')), jirafeau_ini_to_bytes(ini_get('upload_max_filesize')));
55 * gets a string explaining the error
56 * @param $code the error code
57 * @returns a string explaining the error
59 function jirafeau_upload_errstr($code) {
61 case UPLOAD_ERR_INI_SIZE
:
62 case UPLOAD_ERR_FORM_SIZE
:
63 return _('Your file exceeds the maximum authorized file size.');
66 case UPLOAD_ERR_PARTIAL
:
67 case UPLOAD_ERR_NO_FILE
:
68 return _('Your file was not uploaded correctly. You may succeed in retrying.');
71 case UPLOAD_ERR_NO_TMP_DIR
:
72 case UPLOAD_ERR_CANT_WRITE
:
73 case UPLOAD_ERR_EXTENSION
:
74 return _('Internal error. You may not succeed in retrying.');
80 return _('Unknown error.');
83 /** Remove link and it's file
84 * @param $link the link's name (hash)
87 function jirafeau_delete($link) {
88 if(!file_exists(VAR_LINKS
. $link))
91 $content = file(VAR_LINKS
. $link);
92 $md5 = trim($content[5]);
93 unlink(VAR_LINKS
. $link);
96 if (file_exists(VAR_FILES
. $md5 . '_count')) {
97 $content = file(VAR_FILES
. $md5 . '_count');
98 $counter = trim($content[0]);
103 $handle = fopen(VAR_FILES
. $md5 . '_count', 'w');
104 fwrite($handle, $counter);
108 if ($counter == 0 && file_exists(VAR_FILES
. $md5)) {
109 unlink (VAR_FILES
. $md5);
110 unlink (VAR_FILES
. $md5 . '_count');
115 * handles an uploaded file
116 * @param $file the file struct given by $_FILE[]
117 * @param $one_time_download is the file a one time download ?
118 * @param $key if not empty, protect the file with this key
119 * @param $time the time of validity of the file
120 * @param $cfg the current configuration
121 * @param $ip uploader's ip
122 * @returns an array containing some information
123 * 'error' => information on possible errors
124 * 'link' => the link name of the uploaded file
125 * 'delete_link' => the link code to delete file
127 function jirafeau_upload($file, $one_time_download, $key, $time, $cfg, $ip) {
128 if(empty($file['tmp_name']) ||
!is_uploaded_file($file['tmp_name'])) {
129 return(array('error' => array('has_error' => true, 'why' => jirafeau_upload_errstr($file['error'])), 'link' => '', 'delete_link' => ''));
132 /* array representing no error */
133 $noerr = array('has_error' => false, 'why' => '');
135 /* file informations */
136 $md5 = md5_file($file['tmp_name']);
137 $name = trim($file['name']);
138 $mime_type = $file['type'];
139 $size = $file['size'];
141 /* does file already exist ? */
143 if(file_exists(VAR_FILES
. $md5)) {
144 $rc = unlink($file['tmp_name']);
146 elseif(move_uploaded_file($file['tmp_name'], VAR_FILES
. $md5)) {
154 'why' => _('Internal error during file creation.')),
160 /* increment or create count file */
162 if(file_exists(VAR_FILES
. $md5 . '_count')) {
163 $content = file(VAR_FILES
. $md5 . '_count');
164 $counter = trim($content[0]);
167 $handle = fopen(VAR_FILES
. $md5 . '_count', 'w');
168 fwrite($handle, $counter);
171 /* Create delete code. */
172 $delete_link_code = 0;
173 for ($i = 0; $i < 8; $i++
)
174 $delete_link_code .= dechex(rand(0,16));
176 /* create link file */
177 $link_tmp_name = VAR_LINKS
. $md5 . rand(0, 10000) . '.tmp';
178 $handle = fopen($link_tmp_name, 'w');
179 fwrite($handle, $name . NL
. $mime_type . NL
. $size . NL
. $key . NL
. $time . NL
. $md5 . NL
. ($one_time_download ?
'O' : 'R') . NL
. date('U') . NL
. $ip . NL
. $delete_link_code . NL
);
181 $md5_link = md5_file($link_tmp_name);
182 if(!rename($link_tmp_name, VAR_LINKS
. $md5_link)) {
183 unlink($link_tmp_name);
186 $handle = fopen(VAR_FILES
. $md5 . '_count', 'w');
187 fwrite($handle, $counter);
191 unlink(VAR_FILES
. $md5 . '_count');
192 unlink(VAR_FILES
. $md5);
197 'why' => _('Internal error during file creation.')),
202 return(array('error' => $noerr, 'link' => $md5_link, 'delete_link' => $delete_link_code));
206 * tells if a mime-type is viewable in a browser
207 * @param $mime the mime type
208 * @returns a boolean telling if a mime type is viewable
210 function jirafeau_is_viewable($mime) {
212 // actually, verify if mime-type is an image or a text
213 $viewable = array('image', 'text');
214 $decomposed = explode('/', $mime);
215 return in_array($decomposed[0], $viewable);
221 // Error handling functions.
222 //! Global array that contains all registered errors.
223 $error_list = array ();
226 * Adds an error to the list of errors.
227 * @param $title the error's title
228 * @param $description is a human-friendly description of the problem.
230 function add_error ($title, $description) {
232 $error_list[] = '<p>' . $title . '<br />' . $description . '</p>';
236 * Informs whether any error has been registered yet.
237 * @return true if there are errors.
239 function has_error () {
241 return !empty ($error_list);
245 * Displays all the errors.
247 function show_errors () {
250 echo '<div class="error">';
251 foreach ($error_list as $error) {
patrick-canterino.de