2012-04-18 13:23:42 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package Friendica\modules
|
|
|
|
* @subpackage FileBrowser
|
|
|
|
* @author Fabio Comuni <fabrixxm@kirgroup.com>
|
|
|
|
*/
|
2012-06-07 20:17:31 +02:00
|
|
|
|
|
|
|
require_once('include/Photo.php');
|
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
/**
|
|
|
|
* @param App $a
|
|
|
|
*/
|
|
|
|
function fbrowser_content($a){
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
if (!local_user())
|
|
|
|
killme();
|
|
|
|
|
|
|
|
if ($a->argc==1)
|
|
|
|
killme();
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2015-07-28 17:20:40 +02:00
|
|
|
$template_file = "filebrowser.tpl";
|
|
|
|
$mode = "";
|
|
|
|
if (x($_GET,'mode')) {
|
|
|
|
$template_file = "filebrowser_plain.tpl";
|
|
|
|
$mode = "?mode=".$_GET['mode'];
|
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
|
|
|
//echo "<pre>"; var_dump($a->argv); killme();
|
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
switch($a->argv[1]){
|
|
|
|
case "image":
|
2015-07-29 11:55:26 +02:00
|
|
|
$path = array( array("", t("Photos")));
|
2012-04-18 14:56:03 +02:00
|
|
|
$albums = false;
|
2012-04-18 15:15:52 +02:00
|
|
|
$sql_extra = "";
|
|
|
|
$sql_extra2 = " ORDER BY created DESC LIMIT 0, 10";
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
if ($a->argc==2){
|
2015-10-28 23:22:42 +01:00
|
|
|
$albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' ",
|
|
|
|
intval(local_user()),
|
|
|
|
dbesc('Contact Photos'),
|
|
|
|
dbesc( t('Contact Photos'))
|
2012-04-18 13:23:42 +02:00
|
|
|
);
|
2015-11-08 12:05:23 +01:00
|
|
|
|
|
|
|
function _map_folder1($el){return array(bin2hex($el['album']),$el['album']);};
|
|
|
|
$albums = array_map( "_map_folder1" , $albums);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2012-04-18 14:56:03 +02:00
|
|
|
$album = "";
|
2012-04-18 13:23:42 +02:00
|
|
|
if ($a->argc==3){
|
|
|
|
$album = hex2bin($a->argv[2]);
|
2012-04-18 14:56:03 +02:00
|
|
|
$sql_extra = sprintf("AND `album` = '%s' ",dbesc($album));
|
2012-04-18 15:15:52 +02:00
|
|
|
$sql_extra2 = "";
|
2015-07-29 11:55:26 +02:00
|
|
|
$path[]=array($a->argv[2], $album);
|
2012-04-18 14:56:03 +02:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
|
|
|
$r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`
|
2015-10-28 23:22:42 +01:00
|
|
|
FROM `photo` WHERE `uid` = %d $sql_extra AND `album` != '%s' AND `album` != '%s'
|
2012-04-18 15:15:52 +02:00
|
|
|
GROUP BY `resource-id` $sql_extra2",
|
2015-10-28 23:22:42 +01:00
|
|
|
intval(local_user()),
|
|
|
|
dbesc('Contact Photos'),
|
|
|
|
dbesc( t('Contact Photos'))
|
2012-04-18 14:56:03 +02:00
|
|
|
);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2015-11-08 12:05:23 +01:00
|
|
|
function _map_files1($rr){
|
2012-06-07 20:17:31 +02:00
|
|
|
global $a;
|
|
|
|
$types = Photo::supportedTypes();
|
|
|
|
$ext = $types[$rr['type']];
|
2012-12-22 20:57:29 +01:00
|
|
|
|
|
|
|
if($a->theme['template_engine'] === 'internal') {
|
|
|
|
$filename_e = template_escape($rr['filename']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$filename_e = $rr['filename'];
|
|
|
|
}
|
|
|
|
|
2015-08-24 13:54:41 +02:00
|
|
|
return array(
|
2015-11-08 12:05:23 +01:00
|
|
|
$a->get_baseurl() . '/photos/' . $a->user['nickname'] . '/image/' . $rr['resource-id'],
|
2015-08-24 13:54:41 +02:00
|
|
|
$filename_e,
|
2012-06-07 20:17:31 +02:00
|
|
|
$a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['loq'] . '.'. $ext
|
|
|
|
);
|
|
|
|
}
|
2015-11-08 12:05:23 +01:00
|
|
|
$files = array_map("_map_files1", $r);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2015-07-28 17:20:40 +02:00
|
|
|
$tpl = get_markup_template($template_file);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2015-07-28 17:20:40 +02:00
|
|
|
$o = replace_macros($tpl, array(
|
2012-04-18 14:56:03 +02:00
|
|
|
'$type' => 'image',
|
|
|
|
'$baseurl' => $a->get_baseurl(),
|
|
|
|
'$path' => $path,
|
|
|
|
'$folders' => $albums,
|
|
|
|
'$files' =>$files,
|
2012-12-24 16:44:26 +01:00
|
|
|
'$cancel' => t('Cancel'),
|
2015-07-28 17:20:40 +02:00
|
|
|
'$nickname' => $a->user['nickname'],
|
2012-04-18 14:56:03 +02:00
|
|
|
));
|
2015-08-24 13:54:41 +02:00
|
|
|
|
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
break;
|
|
|
|
case "file":
|
|
|
|
if ($a->argc==2){
|
2015-10-28 23:22:42 +01:00
|
|
|
$files = q("SELECT `id`, `filename`, `filetype` FROM `attach` WHERE `uid` = %d ",
|
2012-04-18 13:23:42 +02:00
|
|
|
intval(local_user())
|
|
|
|
);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2015-11-08 12:05:23 +01:00
|
|
|
function _map_files2($rr){ global $a;
|
2012-04-18 13:23:42 +02:00
|
|
|
list($m1,$m2) = explode("/",$rr['filetype']);
|
|
|
|
$filetype = ( (file_exists("images/icons/$m1.png"))?$m1:"zip");
|
2012-12-22 20:57:29 +01:00
|
|
|
|
|
|
|
if($a->theme['template_engine'] === 'internal') {
|
|
|
|
$filename_e = template_escape($rr['filename']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$filename_e = $rr['filename'];
|
|
|
|
}
|
|
|
|
|
2015-08-24 13:54:41 +02:00
|
|
|
return array( $a->get_baseurl() . '/attach/' . $rr['id'], $filename_e, $a->get_baseurl() . '/images/icons/16/' . $filetype . '.png');
|
2012-04-18 13:23:42 +02:00
|
|
|
}
|
2015-11-08 12:05:23 +01:00
|
|
|
$files = array_map("_map_files2", $files);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
|
|
|
|
2015-07-28 17:20:40 +02:00
|
|
|
$tpl = get_markup_template($template_file);
|
|
|
|
$o = replace_macros($tpl, array(
|
2012-04-18 13:23:42 +02:00
|
|
|
'$type' => 'file',
|
|
|
|
'$baseurl' => $a->get_baseurl(),
|
2015-07-29 11:55:26 +02:00
|
|
|
'$path' => array( array( "", t("Files")) ),
|
2012-04-18 13:23:42 +02:00
|
|
|
'$folders' => false,
|
|
|
|
'$files' =>$files,
|
2012-12-24 16:44:26 +01:00
|
|
|
'$cancel' => t('Cancel'),
|
2015-07-28 17:20:40 +02:00
|
|
|
'$nickname' => $a->user['nickname'],
|
2012-04-18 13:23:42 +02:00
|
|
|
));
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
break;
|
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2015-07-28 17:20:40 +02:00
|
|
|
if (x($_GET,'mode')) {
|
|
|
|
return $o;
|
|
|
|
} else {
|
|
|
|
echo $o;
|
|
|
|
killme();
|
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
}
|