aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Thumbnail.php
blob: caf5dd3ae219b56cdefc42b88228b848c37776eb (plain) (blame)
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
<?php /** @file */

namespace Zotlabs\Daemon;


class Thumbnail {

	static public function run($argc,$argv) {

		if(! $argc == 2)
			return;

		$c = q("select * from attach where hash = '%s' ",
			dbesc($argv[1])
		);

		if(! $c)
			return;

		$preview_style   = intval(get_config('system','thumbnail_security',0));
		$preview_width   = intval(get_config('system','thumbnail_width',300));
		$preview_height  = intval(get_config('system','thumbnail_height',300));

		$attach = $c[0];
		$default_controller = null;
		
		$files = glob('Zotlabs/Thumbs/*.php');
		if($files) {
			foreach($files as $f) {
				$clsname = '\\Zotlabs\\Thumbs\\' . ucfirst(basename($f,'.php'));
				if(class_exists($clsname)) {
					$x = new $clsname();
					if(method_exists($x,'Match')) {
						$matched = $x->Match($attach['filetype']);
						if($matched) {
							$x->Thumb($attach,$preview_style,$preview_width,$preview_height);
						}
					}
					if(method_exists($x,'MatchDefault')) {
						$default_matched = $x->MatchDefault(substr($attach['filetype'],0,strpos($attach['filetype'],'/')));
						if($default_matched) {
							$default_controller = $x;
						}
					}
				}
			}
		}
		if(($default_controller) && (! file_exists(dbunescbin($attach['content']) . '.thumb'))) {
			$default_controller->Thumb($attach,$preview_style,$preview_width,$preview_height);
		}
	}
}