File: FileInfo.php

package info (click to toggle)
phpwiki 1.3.12p3-5etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 16,956 kB
  • ctags: 21,608
  • sloc: php: 82,335; xml: 3,840; sh: 1,522; sql: 1,198; perl: 625; makefile: 562; awk: 28
file content (303 lines) | stat: -rw-r--r-- 9,515 bytes parent folder | download | duplicates (3)
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
<?php // -*-php-*-
rcs_id('$Id: FileInfo.php,v 1.4 2005/10/29 14:18:47 rurban Exp $');
/*
 Copyright 2005 $ThePhpWikiProgrammingTeam
 
 This file is part of PhpWiki.

 PhpWiki 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.

 PhpWiki 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 PhpWiki; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/**
 * This plugin displays the version, date, size, perms of an uploaded file.
 * Only files relative and below to the uploads path can be handled.
 *
 * Usage:
 *   <?plugin FileVersion file=uploads/setup.exe display=version,date ?>
 *   <?plugin FileVersion file=uploads/setup.exe display=name,version,date 
 *                        format="%s (version: %s, date: %s)" ?>
 *
 * @author: ReiniUrban
 */

class WikiPlugin_FileInfo
extends WikiPlugin
{
    function getName () {
        return _("FileInfo");
    }

    function getDescription () {
        return _("Display file information like version,size,date,... of uploaded files.");
    }

    function getVersion() {
        return preg_replace("/[Revision: $]/", '',
                            "\$Revision: 1.4 $");
    }

    function getDefaultArguments() {
        return array(
                     'file'      => false, // relative path from PHPWIKI_DIR. (required)
                     'display'   => false, // version,size,date,mtime,owner,name,path,dirname,link.  (required)
                     'format'    => false, // printf format string with %s only, all display modes 
		     			   // from above vars return strings (optional)
                    );
    }

    function run($dbi, $argstr, &$request, $basepage) {
        extract($this->getArgs($argstr, $request));
        if (!$file)
            return $this->error(sprintf(_("A required argument '%s' is missing."), 'file'));
        if (!$display)
            return $this->error(sprintf(_("A required argument '%s' is missing."), 'display'));

        $dir = getcwd();
        chdir(PHPWIKI_DIR);
	// sanify $file name
	if (!file_exists($file)) {
	    trigger_error("file \"$file\" not found", E_USER_WARNING);
	}
	$realfile = realpath($file);
	if (!string_starts_with($realfile, realpath(getUploadDataPath())))
	    return $this->error("invalid path \"$file\"");
	else 
	    $isuploaded = 1;
	$s = array();
	$modes = explode(",", $display);
	foreach ($modes as $mode) {
	    switch ($mode) {
	    case 'version':  $s[] = $this->exeversion($file); break;
	    case 'size':     $s[] = filesize($file); break;
	    case 'phonysize':$s[] = $this->phonysize(filesize($file)); break;
	    case 'date':     $s[] = strftime("%x %X", filemtime($file)); break;
	    case 'mtime':    $s[] = filemtime($file); break;
	    case 'name':     $s[] = basename($file); break;
	    case 'path':     $s[] = $file; break;
	    case 'dirname':  $s[] = dirname($file); break;
	    case 'magic':    $s[] = $this->magic($file); break;
	    case 'mime-typ': $s[] = $this->mime_type($file); break;
	    case 'link':    
		if ($isuploaded) {
		    $s[] = "[Upload:".basename($file)."]"; 
		} else {
		    $s[] = "[".basename($file)."]"; 
		}
		break;
	    default:
		return $this->error(sprintf(_("Unsupported argument: %s=%s"), 'display', $mode)); 
		break;
	    }
	}
        chdir($dir);
	if (!$format) {
	    $format = '';
	    foreach ($s as $x) { $format .= " %s"; }
	}
	array_unshift($s, $format);
	// $x, array($i,$j) => sprintf($x, $i, $j)
        $result = call_user_func_array("sprintf", $s);
	if (in_array('link', $modes)) {
	    require_once("lib/InlineParser.php");
	    return TransformInline($result);
	} else {
	    return $result;
	}
    }

    function magic($file) {
	if (function_exists('finfo_file') or loadPhpExtension('fileinfo')) {
	    // Valid finfo_open (i.e. libmagic) options:
	    // FILEINFO_NONE | FILEINFO_SYMLINK | FILEINFO_MIME | FILEINFO_COMPRESS | FILEINFO_DEVICES |
	    // FILEINFO_CONTINUE | FILEINFO_PRESERVE_ATIME | FILEINFO_RAW
	    $f = finfo_open(/*FILEINFO_MIME*/);
	    $result = finfo_file(realpath($file));
	    finfo_close($res);
	    return $result;
	}
	return '';
    }

    function mime_type($file) {
	return '';
    }

    function _formatsize ($n, $factor, $suffix = '') {
        if ($n > $factor) {
            $b = $n / $factor;
            $n -= floor($factor * $b);
            return number_format($b, $n ? 3 : 0). $suffix;
        }
    }
    function phonysize ($a) {
        $factor = 1024 * 1024 * 1000;
        if ($a > $factor)
            return $this->_formatsize($a, $factor, ' GB');
        $factor = 1024 * 1000;
        if ($a > $factor)
            return $this->_formatsize($a, $factor, ' MB');
        $factor = 1024;
        if ($a > $factor)
            return $this->_formatsize($a, $factor, ' KB');
        if ($a > 1)
            return $this->_formatsize($a, 1, ' byte');
        else
            return $a;
    }

    function exeversion($file) {
    	if (!isWindows()) return "?";
	if (class_exists('ffi') or loadPhpExtension('ffi'))
	    return $this->exeversion_ffi($file);
	if (function_exists('res_list_type') or loadPhpExtension('win32std'))
	    return $this->exeversion_resopen($file);
	return exeversion_showver($file);
	return '';
    }

    // http://www.codeproject.com/dll/showver.asp
    function exeversion_showver($file) {
	$path = realpath($file);
	$result = `showver $path`; 
    	return "?";
    }

    function exeversion_ffi($file) {
	if (!DEBUG)
	    return "?"; // not yet stable
    	
	if (function_exists('ffi') or loadPhpExtension('ffi')) {
	    $win32_idl = "
struct VS_FIXEDFILEINFO {
        DWORD dwSignature;
        DWORD dwStrucVersion;
        DWORD dwFileVersionMS;
        DWORD dwFileVersionLS;
        DWORD dwProductVersionMS;
        DWORD dwProductVersionLS;
        DWORD dwFileFlagsMask;
        DWORD dwFileFlags;
        DWORD dwFileOS;
        DWORD dwFileType;
        DWORD dwFileSubtype;
        DWORD dwFileDateMS;
        DWORD dwFileDateLS;
};
struct VS_VERSIONINFO { struct VS_VERSIONINFO
  WORD  wLength; 
  WORD  wValueLength; 
  WORD  wType; 
  WCHAR szKey[1]; 
  WORD  Padding1[1]; 
  VS_FIXEDFILEINFO Value; 
  WORD  Padding2[1]; 
  WORD  Children[1]; 
};
[lib='kernel32.dll'] DWORD GetFileVersionInfoSizeA(char *szFileName, DWORD *dwVerHnd);
[lib='kernel32.dll'] int GetFileVersionInfoA(char *sfnFile, DWORD dummy, DWORD size, struct VS_VERSIONINFO *pVer);
";
            $ffi = new ffi($win32_idl);
            $dummy = 0; // &DWORD
 	    $size = $ffi->GetFileVersionInfoSizeA($file, $dummy);
	    //$pVer = str_repeat($size+1);
	    $pVer = new ffi_struct($ffi, "VS_VERSIONINFO");
	    if ($ffi->GetFileVersionInfoA($file, 0, $size, $pVer) 
	        and $pVer->wValueLength) {
		// analyze the VS_FIXEDFILEINFO(Value);
		// $pValue = new ffi_struct($ffi, "VS_FIXEDFILEINFO");
		$pValue =& $pVer->Value;
		return sprintf("%d.%d.%d.%d",
			       $pValue->dwFileVersionMS >> 16,
			       $pValue->dwFileVersionMS & 0xFFFF,
			       $pValue->dwFileVersionLS >> 16, 
			       $pValue->dwFileVersionLS & 0xFFFF);
	    }
	}
    }

    // Read "RT_VERSION/VERSIONINFO" exe/dll resource info for MSWin32 binaries
    // The "win32std" extension is not ready yet to pass back a VERSIONINFO struct
    function exeversion_resopen($file) {
	if (function_exists('res_list_type') or loadPhpExtension('win32std')) {
	    // See http://msdn.microsoft.com/workshop/networking/predefined/res.asp
	    $v = file_get_contents('res://'.realpath($file).urlencode('/RT_VERSION/#1'));
	    if ($v) {
	    	// This is really a binary VERSIONINFO block, with lots of
	    	// nul bytes (widechar) which cannot be transported as string.
	    	return "$v";
	    }
            else {
		$h = res_open(realpath($file));
		$v = res_get($h, 'RT_VERSION', 'FileVersion');
		res_close($h);
		if ($v) return $v;

		$h = res_open(realpath($file));
		$v = res_get($h, '#1', 'RT_VERSION', 1);
		res_close($h);
		if ($v) return $v;
	    }
	      
	    /* The version consists of two 32-bit integers, defined by four 16-bit integers. 
	       For example, "FILEVERSION 3,10,0,61" is translated into two doublewords: 
	       0x0003000a and 0x0000003d, in that order. */
/*	    
	$h = res_open(realpath($file));
	    
	echo "Res list of '$file': \n";
	$list= res_list_type($h, true);
	if( $list===FALSE ) err( "Can't list type" );
	
	for( $i= 0; $i<count($list); $i++ ) {
		echo $list[$i]."\n";
		$res= res_list($h, $list[$i]);
		for( $j= 0; $j<count($res); $j++ ) {
			echo "\t".$res[$j]."\n";
		}
	}
	echo "Res get: ".res_get( $h, 'A_TYPE', 'A_RC_NAME' )."\n\n";
	res_close( $h );	    
*/
	    if ($v)
	        return "$v";
	    else 
	        return "";
	} else {
	    return "";
	}
	
    }
};

/* 
 $Log: FileInfo.php,v $
 Revision 1.4  2005/10/29 14:18:47  rurban
 add display=phonysize

 Revision 1.3  2005/10/29 13:35:00  rurban
 fix Log:, add chdir() if not in PHPWIKI_DIR, fix ->warning


*/

// For emacs users
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>