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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
|
<?php
/**
* Management of Liberty Content
*
* @package liberty
* @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyAttachable.php,v 1.3 2005/08/07 17:40:29 squareing Exp $
* @author spider <spider@steelsun.com>
*/
// +----------------------------------------------------------------------+
// | Copyright (c) 2004, bitweaver.org
// +----------------------------------------------------------------------+
// | All Rights Reserved. See copyright.txt for details and a complete list of authors.
// | Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
// |
// | For comments, please use phpdocu.sourceforge.net documentation standards!!!
// | -> see http://phpdocu.sourceforge.net/
// +----------------------------------------------------------------------+
// | Authors: spider <spider@steelsun.com>
// +----------------------------------------------------------------------+
/**
* required setup
*/
require_once( LIBERTY_PKG_PATH.'LibertyContent.php' );
require_once( LIBERTY_PKG_PATH.'LibertySystem.php' );
/**
* LibertyAttachable class
*
* @package liberty
*/
class LibertyAttachable extends LibertyContent {
var $mContentId;
var $mStorage;
function LibertyAttachable() {
LibertyContent::LibertyContent();
}
/**
* getStoragePath - get path to store files for the feature centralized_upload_dir. It creates a calculable hierarchy of directories
*
* @access public
* @author Christian Fowler<spider@steelsun.com>
* @param $pSubDir any desired directory below the StoragePath. this will be created if it doesn't exist
* @param $pCommon indicates not to use the 'common' branch, and not the 'users/.../<user_id>' branch
* @return string full path on local filsystem to store files.
*/
function getStoragePath( $pSubDir = NULL, $pUserId = NULL, $pPackage = ACTIVE_PACKAGE ) {
$ret = null;
if( $storageUrl = $this->getStorageBranch( $pSubDir, $pUserId, $pPackage ) ) {
$ret = BIT_ROOT_PATH.$storageUrl;
//$ret = $storageUrl;
}
return $ret;
}
function getStorageUrl( $pSubDir = NULL, $pUserId = NULL, $pPackage = ACTIVE_PACKAGE ) {
return BIT_ROOT_URL.$this->getStorageBranch( $pSubDir, $pUserId, $pPackage );
}
/**
* getStorageBranch - get url to store files for the feature centralized_upload_dir. It creates a calculable hierarchy of directories
*
* @access public
* @author Christian Fowler<spider@steelsun.com>
* @param $pSubDir any desired directory below the StoragePath. this will be created if it doesn't exist
* @param $pUserId indicates the 'users/.../<user_id>' branch or use the 'common' branch if null
* @return string full path on local filsystem to store files.
*/
function getStorageBranch( $pSubDir = NULL, $pUserId = NULL, $pPackage = ACTIVE_PACKAGE ) {
// *PRIVATE FUNCTION. GO AWAY! DO NOT CALL DIRECTLY!!!
global $gBitSystem;
$baseUrl = null;
$pathParts = array();
$pref = split( '/',$gBitSystem->getPreference('centralized_upload_dir') );
if( empty( $pref ) ) {
$pathParts[] = 'storage';
} else {
$pathParts = $pref;
}
if( !$pUserId ) {
$pathParts[] = 'common';
} else {
$pathParts[] = 'users';
$pathParts[] = (int)($pUserId % 1000);
$pathParts[] = $pUserId;
}
if ($pPackage) {
$pathParts[] = $pPackage;
}
// In case $pSubDir is multiple levels deep we'll need to mkdir each directory if they don't exist
$pSubDirParts = split('/',$pSubDir);
foreach ($pSubDirParts as $subDir) {
$pathParts[] = $subDir;
}
foreach( $pathParts as $p ) {
if( !empty( $p ) ) {
$baseUrl .= $p.'/';
if( !file_exists( BIT_ROOT_PATH.$baseUrl ) ) {
if( !mkdir( BIT_ROOT_PATH.$baseUrl ) ) {
// ACK, something went very wrong.
$baseUrl = FALSE;
break;
}
}
}
}
return $baseUrl;
}
/**
* verifyStorageFile - verify if a file exists
*
* @access public
* @author Christian Fowler<spider@steelsun.com>
* @param $pFileName name of the file that needs to be checked for
* @param $pSubDir any desired directory below the StoragePath.
* @param $pCommon indicates usage of the 'common' branch, and not the 'users/.../<user_id>' branch
* @param $pPackage indicates what package the data is from. defaults to the currently active package
* @return on success return full path to file, if it fails to find the file, returns false
*/
function verifyStorageFile( $pFileName, $pSubDir = NULL, $pUserId = NULL, $pPackage = ACTIVE_PACKAGE ) {
// don't worry about double slashes '//' for now. we'll remove them later
$path = $this->getPreference('centralized_upload_dir').'/';
if( empty( $path ) ) {
$path = 'storage/';
}
if( !$pUserId ) {
$path .= 'common/';
} else {
$path .= 'users/'.(int)($pUserId % 1000).'/'.$pUserId.'/';
}
$path .= $pPackage.'/'.$pSubDir.'/'.$pFileName;
$path = BIT_ROOT_PATH.ereg_replace( '//','/',$path );
if( file_exists( $path ) ) {
return $path;
} else {
return FALSE;
}
}
function verify( &$pParamHash ) {
global $gBitSystem, $gBitUser;
if( !empty( $pParamHash['attachment_id'] ) && !is_numeric( $pParamHash['attachment_id'] ) ) {
$this->mErrors['file'] = 'System Error: Non-numeric storage_id.';
}
if( empty( $pParamHash['user_id'] ) ) {
// storage is always owned by the user that uploaded it!
// er... or at least admin if somehow we have a NULL mUserId - anon uploads maybe?
$pParamHash['user_id'] = is_numeric( $gBitUser->mUserId ) ? $gBitUser->mUserId : ROOT_USER_ID;
}
if( empty( $pParamHash['process_storage'] ) ) {
$pParamHash['process_storage'] = NULL;
}
if( empty( $pParamHash['subdir'] ) ) {
$pParamHash['subdir'] = 'files';
}
if( !empty( $_FILES['upload'] ) ) {
// tiki files upload
$pParamHash['upload'] = $_FILES['upload'];
}
if( !empty( $pParamHash['upload']['size'] ) && !empty( $pParamHash['upload'] ) && is_array( $pParamHash['upload'] ) ) {
$save = TRUE;
if( $gBitSystem->isPackageActive( 'quota' ) && !$gBitUser->isAdmin() ) {
require_once( QUOTA_PKG_PATH.'LibertyQuota.php' );
$quota = new LibertyQuota();
// Prevent people from uploading more than there quota
$q = $quota->getUserQuota( $pParamHash['user_id'] );
$u = (int)$quota->getUserUsage( $pParamHash['user_id'] );
if( $u + $pParamHash['upload']['size'] > $q ) {
$save = FALSE;
$this->mErrors['upload'] = $pParamHash['upload']['name'].' '.tra( 'could not be stored because you do not have enough disk quota.' ).' '.round(($u + $pParamHash['upload']['size'] - $q)/1000).'KB Needed' ;
}
}
if( $save ) {
// - TODO: get common preferences page with this as an option, but right now files are only option cuz no blobs - SPIDERR
$storageGuid = $gBitSystem->getPreference( 'common_storage_plugin', PLUGIN_GUID_BIT_FILES );
if( !empty( $pParamHash['upload']['size'] ) ) {
$pParamHash['upload']['dest_base_name'] = substr( $pParamHash['upload']['name'], 0, strrpos( $pParamHash['upload']['name'], '.' ) );
$pParamHash['upload']['source_file'] = $pParamHash['upload']['tmp_name'];
// lowercase all file extensions
$pParamHash['upload']['name'] = $pParamHash['upload']['dest_base_name'].strtolower( substr( $pParamHash['upload']['name'], strrpos( $pParamHash['upload']['name'], '.' ) ) );
$pParamHash['STORAGE'][$storageGuid] = $pParamHash['upload'];
}
}
}
if( isset( $pParamHash['STORAGE'] ) && is_array( $pParamHash['STORAGE'] ) ) {
foreach( array_keys( $pParamHash['STORAGE'] ) as $guid ) {
if( empty( $pParamHash['STORAGE'][$guid] ) ) {
unset( $pParamHash['STORAGE'][$guid] );
} else {
// reassign uploaded guid value to array element hashed under the guid. we are going to add more stuff to the guid hash
$inputValue = $pParamHash['STORAGE'][$guid];
$pParamHash['STORAGE'][$guid] = array();
$pParamHash['STORAGE'][$guid]['upload'] = $inputValue;
}
}
}
return( count( $this->mErrors ) == 0 );
}
// Things to be stored should be shoved in the array $pParamHash['STORAGE']
function store ( &$pParamHash ) {
global $gLibertySystem;
$this->mDb->StartTrans();
if( LibertyAttachable::verify( $pParamHash ) && LibertyContent::store( $pParamHash ) && !empty( $pParamHash['STORAGE'] ) && count( $pParamHash['STORAGE'] ) ) {
foreach( array_keys( $pParamHash['STORAGE'] ) as $guid ) {
$storeRow = &$pParamHash['STORAGE'][$guid]; // short hand variable assignment
$storeRow['plugin_guid'] = $guid;
$storeRow['content_id'] = $pParamHash['content_id']; // copy in content_id
$storeRow['user_id'] = $pParamHash['user_id']; // copy in the user_id
// do we have a verify function for this storage type, and do things verify?
if( function_exists( $gLibertySystem->mPlugins[$guid]['verify_function'] )
&& $gLibertySystem->mPlugins[$guid]['verify_function']( $storeRow ) ) {
if( empty( $pParamHash['attachment_id'] ) ) {
$sql = "SELECT `attachment_id` FROM `".BIT_DB_PREFIX."tiki_attachments`
WHERE `attachment_plugin_guid` = ? AND `content_id` = ? AND `foreign_id`=?";
$rs = $this->mDb->query( $sql, array( $storeRow['plugin_guid'], (int)$storeRow['content_id'], (int)$storeRow['foreign_id'] ) );
if( empty( $rs ) || !$rs->NumRows() ) {
$pParamHash['attachment_id'] = $this->mDb->GenID( 'tiki_attachments_id_seq' );
$sql = "INSERT INTO `".BIT_DB_PREFIX."tiki_attachments` ( `attachment_id`, `attachment_plugin_guid`, `content_id`, `foreign_id`, `user_id` ) VALUES ( ?, ?, ?, ?, ? )";
$rs = $this->mDb->query( $sql, array( $pParamHash['attachment_id'], $storeRow['plugin_guid'], $pParamHash['content_id'], (int)$storeRow['foreign_id'], $storeRow['user_id'] ) );
} else {
$this->mErrors['storage'] = $guid.' '.$storeRow['foreign_id'].' has already been added to this content.';
$pParamHash['attachment_id'] = NULL;
}
}
$storeRow['attachment_id'] = $pParamHash['attachment_id'];
// if we have uploaded a file, we can take care of that generically
if( is_array( $storeRow['upload'] ) && !empty( $storeRow['upload']['size'] ) ) {
$storeRow['upload']['dest_path'] = $this->getStorageBranch( $storeRow['attachment_id'], $pParamHash['user_id'], 'images' );
$storagePath = liberty_process_upload( $storeRow );
// We're gonna store to local file system & tiki_files table
if( empty( $storagePath ) ) {
$this->mErrors['file'] = 'Could not store file '.$storeRow['upload']['name'].'.';
} else {
$storeRow['upload']['dest_file_path'] = $storagePath;
}
}
if( $pParamHash['attachment_id'] && function_exists( $gLibertySystem->mPlugins[$storeRow['plugin_guid']]['store_function'] ) ) {
$storeFunc = $gLibertySystem->mPlugins[$storeRow['plugin_guid']]['store_function'];
$this->mStorage = $storeFunc( $storeRow );
}
} else {
}
}
}
$this->mDb->CompleteTrans();
if( !empty( $pParamHash['existing_attachment_id'] ) ) {
foreach($pParamHash['existing_attachment_id'] as $existingAttachmentId) {
if( !empty($existingAttachmentId) ) {
$this->cloneAttachment($existingAttachmentId, $pParamHash['content_id']);
}
}
}
return( count( $this->mErrors ) == 0 );
}
// Clone an existing attachment but have it reference another content_id
function cloneAttachment($pAttachmentId, $pNewContentId) {
global $gLibertySystem;
global $gBitUser;
$sql = "SELECT * FROM `".BIT_DB_PREFIX."tiki_attachments` WHERE `attachment_id` = ?";
$rs = $this->mDb->query($sql, array( $pAttachmentId ));
$tmpAttachment = $rs->fields;
if ( !empty($tmpAttachment['attachment_id']) ) {
$newAttachmentId = $this->mDb->GenID( 'tiki_attachments_id_seq' );
$sql = "INSERT INTO `".BIT_DB_PREFIX."tiki_attachments` ( `attachment_id`, `attachment_plugin_guid`, `content_id`, `foreign_id`, `user_id` ) VALUES ( ?, ?, ?, ?, ? )";
$rs = $this->mDb->query( $sql, array( $newAttachmentId, $tmpAttachment['attachment_plugin_guid'], $pNewContentId, $tmpAttachment['foreign_id'], $gBitUser->mUserId ) );
}
}
function expunge () {
if( !empty( $this->mStorage ) && count( $this->mStorage ) ) {
foreach( array_keys( $this->mStorage ) as $i ) {
$this->expungeAttachment( $this->mStorage[$i]['attachment_id'] );
}
}
return LibertyContent::expunge();
}
function expungeAttachment( $pAttachmentId ) {
global $gLibertySystem;
global $gBitUser;
$ret = NULL;
if( is_numeric( $pAttachmentId ) ) {
$sql = "SELECT `attachment_plugin_guid`, `user_id` FROM `".BIT_DB_PREFIX."tiki_attachments` WHERE `attachment_id`=?";
$rs = $this->mDb->query( $sql, array( $pAttachmentId ) );
$guid = $rs->fields['attachment_plugin_guid'];
$user_id = $rs->fields['user_id'];
if( $guid && ($user_id == $gBitUser->mUserId || $gBitUser->isAdmin()) ) {
if ( function_exists( $gLibertySystem->mPlugins[$guid]['expunge_function'])) {
$expungeFunc = $gLibertySystem->mPlugins[$guid]['expunge_function'];
if( $expungeFunc( $pAttachmentId ) ) {
$sql = "DELETE FROM `".BIT_DB_PREFIX."tiki_attachments` WHERE `attachment_id`=?";
$this->mDb->query( $sql, array( $pAttachmentId ) );
}
} else {
print("Expunge function not found for this content!");
$ret = NULL;
}
}
}
return $ret;
}
function detachAttachment( $pAttachmentId ) {
if (is_numeric($pAttachmentId)) {
$attachmentInfo = $this->getAttachment($pAttachmentId);
if (!empty($attachmentInfo['user_id'])) {
$attachmentOwner = new BitUser($attachmentInfo['user_id']);
$attachmentOwner->load();
if ($attachmentOwner->mContentId) {
$query = "UPDATE `".BIT_DB_PREFIX."tiki_attachments` SET `content_id` = ? WHERE `attachment_id` = ?";
$result = $this->mDb->query($query, array($attachmentOwner->mContentId, $pAttachmentId));
} else {
$this->mErrors[] = "Unable to detach this attachment because the owner does not have a content row";
}
} else {
$this->mErrors[] = "An attachment with this id does not exist: $pAttachmentId";
}
}
return TRUE;
}
// allow an optional content_id to be passed in to ease legacy lib style objects (like blogs, articles, etc.)
function load( $pContentId=NULL ) {
// assume a derived class has joined on the tiki_content table, and loaded it's columns already.
global $gLibertySystem;
$conId = ( isset( $pContentId ) && is_numeric( $pContentId ) ? $pContentId : $this->mContentId );
if( !empty( $conId ) ) {
LibertyContent::load($pContentId);
$query = "SELECT * FROM `".BIT_DB_PREFIX."tiki_attachments` ta
WHERE ta.`content_id`=?";
if( $result = $this->mDb->query($query,array((int) $conId)) ) {
$this->mStorage = array();
while( !$result->EOF ) {
$row = &$result->fields;
if( $func = $gLibertySystem->getPluginFunction( $row['attachment_plugin_guid'], 'load_function' ) ) {
$this->mStorage[$row['attachment_id']] = $func( $row );
} else {
print "NO load_function for ".$row['attachment_plugin_guid']." ".$gLibertySystem->mPlugins[$row['attachment_plugin_guid']];
}
$result->MoveNext();
}
}
}
return( TRUE );
}
// allow an optional content_id to be passed in to ease legacy lib style objects (like blogs, articles, etc.)
function getAttachment( $pAttachmentId ) {
// assume a derived class has joined on the tiki_content table, and loaded it's columns already.
global $gLibertySystem;
$ret = NULL;
if( is_numeric( $pAttachmentId ) ) {
$query = "SELECT * FROM `".BIT_DB_PREFIX."tiki_attachments` ta
WHERE ta.`attachment_id`=?";
if( $result = $this->mDb->query($query,array((int) $pAttachmentId)) ) {
$ret = array();
if( !$result->EOF ) {
$row = &$result->fields;
if( $func = $gLibertySystem->getPluginFunction( $row['attachment_plugin_guid'], 'load_function' ) ) {
$ret = $func( $row );
}
}
}
}
return $ret;
}
// Get a list of attachments which also reference the foreign_id of the given attachment
function getSiblingAttachments( $pAttachmentId ) {
$ret = NULL;
$attachmentInfo = $this->getAttachment( $pAttachmentId );
if (!empty($attachmentInfo['attachment_id']) && !empty($attachmentInfo['foreign_id']) && !empty($attachmentInfo['attachment_plugin_guid']) ) {
$query = "SELECT * FROM `".BIT_DB_PREFIX."tiki_attachments` WHERE `foreign_id` = ? AND `attachment_plugin_guid` = ? AND `attachment_id` <> ?";
$result = $this->mDb->query($query, array($attachmentInfo['foreign_id'], $attachmentInfo['attachment_plugin_guid'], $attachment['attachment_id']));
$ret = $result->getRows();
}
return $ret;
}
}
function liberty_process_upload( &$pFileHash ) {
// Check for evil file extensions that could be execed on the server
if( preg_match( '/(.pl|.php|.php3|.php4|.phtml|.cgi|.asp|.sh|.shtml)$/', $pFileHash['upload']['name'] ) ) {
$pFileHash['upload']['name'] = $pFileHash['upload']['name'].'.txt';
}
// Thumbs.db is a windows My Photos/ folder file, and seems to really piss off imagick
if( preg_match( '/^image\/*/', $pFileHash['upload']['type'] ) && $pFileHash['upload']['name'] != 'Thumbs.db' ) {
$ret = liberty_process_image( $pFileHash['upload'] );
} else {
$ret = liberty_process_generic( $pFileHash['upload'] );
}
return $ret;
}
function liberty_process_generic( &$pFileHash ) {
$ret = NULL;
$destBase = $pFileHash['dest_path'].$pFileHash['name'];
$actualPath = BIT_ROOT_PATH.$destBase;
if( is_uploaded_file( $pFileHash['source_file']) ) {
if( move_uploaded_file( $pFileHash['source_file'], $actualPath ) ) {
$ret = $destBase;
}
} elseif( copy( $pFileHash['source_file'], $actualPath ) ) {
$ret = $destBase;
}
$pFileHash['size'] = filesize( $actualPath );
return $ret;
}
function liberty_process_image( &$pFileHash ) {
global $gBitSystem;
$ret = NULL;
$resizeFunc = ($gBitSystem->getPreference( 'image_processor' ) == 'imagick' ) ? 'liberty_imagick_resize_image' : 'liberty_gd_resize_image';
list($type, $ext) = split( '/', strtolower( $pFileHash['type'] ) );
if( $resizePath = $resizeFunc( $pFileHash, $ext ) ) {
$pFileHash['source_file'] = BIT_ROOT_PATH.$resizePath;
$nameHold = $pFileHash['name'];
$sizeHold = $pFileHash['size'];
$ret = $pFileHash['source_file'];
// do not thumbnail only if intentionally set to FALSE
if( !isset( $pFileHash['thumbnail'] ) || $pFileHash['thumbnail']==TRUE ) {
liberty_generate_thumbnails( $pFileHash );
}
$pFileHash['name'] = $nameHold;
$pFileHash['size'] = $sizeHold;
}
return $ret;
}
function liberty_clear_thumbnails( &$pFileHash ) {
$thumbsizes = array( 'avatar', 'small', 'medium', 'large' );
foreach( $thumbsizes as $size ) {
$fullPath = BIT_PKG_PATH.$pFileHash['dest_path']."$size.jpg";
if( file_exists( $fullPath ) ) {
unlink( $fullPath );
}
}
}
function liberty_generate_thumbnails( &$pFileHash ) {
global $gBitSystem;
$resizeFunc = ($gBitSystem->getPreference( 'image_processor' ) == 'imagick' ) ? 'liberty_imagick_resize_image' : 'liberty_gd_resize_image';
// Small thumb is 160x120
$pFileHash['dest_base_name'] = 'avatar';
$pFileHash['name'] = 'avatar.jpg';
$pFileHash['max_width'] = 100;
$pFileHash['max_height'] = 100;
$pFileHash['small_thumb_path'] = BIT_ROOT_PATH.$resizeFunc( $pFileHash );
// Small thumb is 160x120
$pFileHash['dest_base_name'] = 'small';
$pFileHash['name'] = 'small.jpg';
$pFileHash['max_width'] = 160;
$pFileHash['max_height'] = 120;
$pFileHash['small_thumb_path'] = BIT_ROOT_PATH.$resizeFunc( $pFileHash );
// Medium thumb is 400x300
$pFileHash['dest_base_name'] = 'medium';
$pFileHash['name'] = 'medium.jpg';
$pFileHash['max_width'] = 400;
$pFileHash['max_height'] = 300;
$pFileHash['medium_thumb_path'] = BIT_ROOT_PATH.$resizeFunc( $pFileHash );
// Large thumb is 800x600
$pFileHash['dest_base_name'] = 'large';
$pFileHash['name'] = 'large.jpg';
$pFileHash['max_width'] = 800;
$pFileHash['max_height'] = 600;
$pFileHash['large_thumb_path'] = BIT_ROOT_PATH.$resizeFunc( $pFileHash );
}
function liberty_imagick_resize_image( &$pFileHash, $pFormat = NULL ) {
$ret = NULL;
if( !empty( $pFileHash['source_file'] ) && is_file( $pFileHash['source_file'] ) ) {
$iImg = imagick_readimage( $pFileHash['source_file'] );
if( !$iImg ) {
// $pFileHash['error'] = $pFileHash['name'].' '.tra ( "is not a known image file" );
$destUrl = liberty_process_generic( $pFileHash );
} elseif( imagick_iserror( $iImg ) ) {
// $pFileHash['error'] = imagick_failedreason( $iImg ) . imagick_faileddescription( $iImg );
$destUrl = liberty_process_generic( $pFileHash );
} else {
$iwidth = imagick_getwidth( $iImg );
$iheight = imagick_getheight( $iImg );
if( (($iwidth / $iheight) > 0) && !empty( $pFileHash['max_width'] ) && !empty( $pFileHash['max_height'] ) ) {
// we have a portrait image, flip everything
$temp = $pFileHash['max_width'];
$pFileHash['max_height'] = $pFileHash['max_width'];
$pFileHash['max_width'] = $temp;
}
$itype = imagick_getmimetype( $iImg );
list($type, $mimeExt) = split( '/', strtolower( $itype ) );
if( !empty( $pFileHash['max_width'] ) && !empty( $pFileHash['max_height'] ) && ( ($pFileHash['max_width'] < $iwidth || $pFileHash['max_height'] < $iheight ) || ($mimeExt != 'jpeg')) ) {
// We have to resize. *ALL* resizes are converted to jpeg
$destExt = '.jpg';
$destUrl = $pFileHash['dest_path'].$pFileHash['dest_base_name'].$destExt;
$destFile = BIT_PKG_PATH.'/'.$destUrl;
$pFileHash['name'] = $pFileHash['dest_base_name'].$destExt;
//print " if ( !imagick_resize( $iImg, $pFileHash[max_width], $pFileHash[max_height], IMAGICK_FILTER_LANCZOS, 0.5, $pFileHash[max_width] x $pFileHash[max_height] > ) ) {";
// Alternate Filter settings can seen here http://www.dylanbeattie.net/magick/filters/result.html
if ( !imagick_resize( $iImg, $pFileHash['max_width'], $pFileHash['max_height'], IMAGICK_FILTER_CATROM, 1.00, '>' ) ) {
$pFileHash['error'] .= imagick_failedreason( $iImg ) . imagick_faileddescription( $iImg );
}
//print "2YOYOYOYO $iwidth x $iheight $destUrl <br/>";
imagick_set_image_quality( $iImg, 85 );
if( function_exists( 'imagick_set_attribute' ) ) {
// this exists in the PECL package, but not php-imagick
$imagick_set_attribute($iImg,array("quality"=>1) );
}
if( !imagick_writeimage( $iImg, $destFile ) ) {
$pFileHash['error'] .= imagick_failedreason( $iImg ) . imagick_faileddescription( $iImg );
}
$pFileHash['size'] = filesize( $destFile );
} else {
//print "GENERIC";
$destUrl = liberty_process_generic( $pFileHash );
}
}
$ret = $destUrl;
} else {
$pFileHash['error'] = "No source file to resize";
}
return $ret;
}
function liberty_gd_resize_image( &$pFileHash, $pFormat = NULL ) {
$ret = NULL;
list($iwidth, $iheight, $itype, $iattr) = @getimagesize( $pFileHash['source_file'] );
list($type, $ext) = split( '/', strtolower( $pFileHash['type'] ) );
$destUrl = $pFileHash['dest_path'].$pFileHash['dest_base_name'];
if( (empty( $pFileHash['max_width'] ) || empty( $pFileHash['max_height'] )) || ($iwidth <= $pFileHash['max_width'] && $iheight <= $pFileHash['max_height'] && ( $ext == 'gif' || $ext == 'png' || $ext == 'jpg' || $ext == 'jpeg' ) ) ) {
// Keep the same dimensions as input file
$pFileHash['max_width'] = $iwidth;
$pFileHash['max_height'] = $iheight;
} elseif( $iheight && (($iwidth / $iheight) > 0) && !empty( $pFileHash['max_width'] ) && !empty( $pFileHash['max_height'] ) ) {
// we have a portrait image, flip everything
$temp = $pFileHash['max_width'];
$pFileHash['max_height'] = $pFileHash['max_width'];
$pFileHash['max_width'] = $temp;
}
// we need to scale and/or reformat
$fp = fopen( $pFileHash['source_file'], "rb" );
$data = fread( $fp, filesize( $pFileHash['source_file'] ) );
fclose ($fp);
if( function_exists("ImageCreateFromString") ) {
$img = @imagecreatefromstring($data);
}
if( !empty( $img ) ) {
$size_x = imagesx($img);
$size_y = imagesy($img);
}
if( !empty( $img ) && $size_x && $size_y ) {
$transColor = imagecolortransparent( $img );
if( $size_x > $size_y && !empty( $pFileHash['max_width'] ) ) {
$tscale = ((int)$size_x / $pFileHash['max_width']);
} elseif( !empty( $pFileHash['max_height'] ) ) {
$tscale = ((int)$size_y / $pFileHash['max_height']);
} else {
$tscale = 1;
}
$tw = ((int)($size_x / $tscale));
$ty = ((int)($size_y / $tscale));
if (chkgd2()) {
$t = imagecreatetruecolor($tw, $ty);
// png alpha stuff - needs more testing - spider
// imagecolorallocatealpha ( $t, 0, 0, 0, 127 );
// $ImgWhite = imagecolorallocate($t, 255, 255, 255);
// imagefill($t, 0, 0, $ImgWhite);
// imagecolortransparent($t, $ImgWhite);
imagecopyresampled($t, $img, 0, 0, 0, 0, $tw, $ty, $size_x, $size_y);
} else {
$t = imagecreate($tw, $ty);
$imagegallib->ImageCopyResampleBicubic($t, $img, 0, 0, 0, 0, $tw, $ty, $size_x, $size_y);
}
switch( $pFormat ) {
case 'png':
$ext = '.png';
$destFile = BIT_PKG_PATH.'/'.$destUrl.$ext;
imagepng( $t, $destFile );
break;
case 'gif':
// This must go immediately before default so default will be hit for PHP's without gif support
if( function_exists( 'imagegif' ) ) {
$ext = '.gif';
$destFile = BIT_PKG_PATH.'/'.$destUrl.$ext;
imagegif( $t, $destFile );
break;
}
default:
$ext = '.jpg';
$destFile = BIT_PKG_PATH.'/'.$destUrl.$ext;
imagejpeg( $t, $destFile );
break;
}
$pFileHash['name'] = $pFileHash['dest_base_name'].$ext;
$pFileHash['size'] = filesize( $destFile );
$ret = $destUrl.$ext;
} elseif( $iwidth && $iheight ) {
$ret = liberty_process_generic( $pFileHash );
}
return $ret;
}
function liberty_imagick_rotate_image( &$pFileHash ) {
$ret = FALSE;
if( !empty( $pFileHash['source_file'] ) && is_file( $pFileHash['source_file'] ) ) {
$iImg = imagick_readimage( $pFileHash['source_file'] );
if( !$iImg ) {
$pFileHash['error'] = $pFileHash['name'].' '.tra ( "is not a known image file" );
} elseif( imagick_iserror( $iImg ) ) {
$pFileHash['error'] = imagick_failedreason( $iImg ) . imagick_faileddescription( $iImg );
} elseif( empty( $pFileHash['degrees'] ) || !is_numeric( $pFileHash['degrees'] ) ) {
$pFileHash['error'] = tra( 'Invalid rotation amount' );
} else {
if ( !imagick_rotate( $iImg, $pFileHash['degrees'] ) ) {
$pFileHash['error'] .= imagick_failedreason( $iImg ) . imagick_faileddescription( $iImg );
}
if( !imagick_writeimage( $iImg, $pFileHash['source_file'] ) ) {
$pFileHash['error'] .= imagick_failedreason( $iImg ) . imagick_faileddescription( $iImg );
}
}
} else {
$pFileHash['error'] = "No source file to resize";
}
return( empty( $pFileHash['error'] ) );
}
function liberty_gd_rotate_image( &$pFileHash, $pFormat = NULL ) {
if( !function_exists( 'imagerotate' ) ) {
$pFileHash['error'] = "Rotate is not available on this webserver.";
} elseif( empty( $pFileHash['degrees'] ) || !is_numeric( $pFileHash['degrees'] ) ) {
$pFileHash['error'] = tra( 'Invalid rotation amount' );
} else {
// we need to scale and/or reformat
$fp = fopen( $pFileHash['source_file'], "rb" );
$data = fread( $fp, filesize( $pFileHash['source_file'] ) );
fclose ($fp);
if( function_exists("ImageCreateFromString") ) {
$img = @imagecreatefromstring($data);
}
if( !empty( $img ) ) {
//image rotate degrees seems back ass words.
$rotateImg = imagerotate ( $img, (-1 * $pFileHash['degrees']), 0 );
if( !empty( $rotateImg ) ) {
imagejpeg( $rotateImg, $pFileHash['source_file'] );
} else {
$pFileHash['error'] = "Image rotation failed.";
}
} else {
$pFileHash['error'] = "Image could not be opened for rotation.";
}
}
return( empty( $pFileHash['error'] ) );
}
?>
|