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
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-22 13:29:50 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-24 00:44:05 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 14:56:11 +01:00
|
|
|
use Friendica\Object\Image;
|
2012-06-07 20:17:31 +02:00
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
/**
|
|
|
|
* @param App $a
|
|
|
|
*/
|
2018-01-23 04:20:35 +01:00
|
|
|
function fbrowser_content(App $a)
|
|
|
|
{
|
2017-01-27 05:04:38 +01:00
|
|
|
if (!local_user()) {
|
2012-04-18 13:23:42 +02:00
|
|
|
killme();
|
2017-01-27 05:04:38 +01:00
|
|
|
}
|
2012-04-18 13:23:42 +02:00
|
|
|
|
2017-01-27 05:04:38 +01:00
|
|
|
if ($a->argc == 1) {
|
2012-04-18 13:23:42 +02:00
|
|
|
killme();
|
2017-01-27 05:04:38 +01:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2015-07-28 17:20:40 +02:00
|
|
|
$template_file = "filebrowser.tpl";
|
|
|
|
$mode = "";
|
2018-01-23 04:20:35 +01:00
|
|
|
if (x($_GET, 'mode')) {
|
2015-07-28 17:20:40 +02:00
|
|
|
$mode = "?mode=".$_GET['mode'];
|
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2017-01-27 05:04:38 +01:00
|
|
|
switch ($a->argv[1]) {
|
2012-04-18 13:23:42 +02:00
|
|
|
case "image":
|
2018-01-22 13:29:50 +01:00
|
|
|
$path = [["", L10n::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
|
|
|
|
2018-01-23 04:20:35 +01: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()),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape('Contact Photos'),
|
|
|
|
DBA::escape(L10n::t('Contact Photos'))
|
2012-04-18 13:23:42 +02:00
|
|
|
);
|
2015-11-08 12:05:23 +01:00
|
|
|
|
2018-01-23 04:20:35 +01:00
|
|
|
function _map_folder1($el)
|
|
|
|
{
|
|
|
|
return [bin2hex($el['album']),$el['album']];
|
|
|
|
};
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2018-01-23 04:20:35 +01:00
|
|
|
$albums = array_map("_map_folder1", $albums);
|
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 = "";
|
2018-01-23 04:20:35 +01:00
|
|
|
if ($a->argc==3) {
|
2012-04-18 13:23:42 +02:00
|
|
|
$album = hex2bin($a->argv[2]);
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql_extra = sprintf("AND `album` = '%s' ", DBA::escape($album));
|
2012-04-18 15:15:52 +02:00
|
|
|
$sql_extra2 = "";
|
2018-01-15 14:05:12 +01:00
|
|
|
$path[]=[$a->argv[2], $album];
|
2012-04-18 14:56:03 +02:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
SQL fix fbrowser (RC)
https://github.com/friendica/friendica/pull/3742
Fixing non-standard GROUP BY, and non-standard ORDER BY.
```
DB Error 1055: Expression #2 of SELECT list is not in GROUP BY clause
and contains nonaggregated column 'friendica.photo.id' which is not
functionally dependent on columns in GROUP BY clause; this is
incompatible with sql_mode=only_full_group_by
q, fbrowser_content
SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS
`hiq`,max(`scale`) AS `loq`, `desc` FROM `photo` WHERE `uid` = 1 AND
`album` != 'Contact Photos' AND `album` != 'Contact Photos' GROUP BY
`resource-id` ORDER BY created DESC LIMIT 0, 10
2017-09-27T17:16:35Z@tmkfko6titb71nug3i4vr1mnb1 [NORMAL]:dba.php:553:p
DB Error 1055: Expression #2 of SELECT list is not in GROUP BY clause
and contains nonaggregated column 'friendica.photo.id' which is not
functionally dependent on columns in GROUP BY clause; this is
incompatible with sql_mode=only_full_group_by
q, fbrowser_content
```
```
ERROR 1055 (42000): Expression #1 of ORDER BY clause is not in GROUP BY
clause and contains nonaggregated column 'friendica.photo.created' which
is not functionally dependent on columns in GROUP BY clause; this is
incompatible with sql_mode=only_full_group_by
```
2017-09-28 21:24:07 +02:00
|
|
|
$r = q("SELECT `resource-id`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`filename`) AS `filename`, ANY_VALUE(`type`) AS `type`,
|
|
|
|
min(`scale`) AS `hiq`, max(`scale`) AS `loq`, ANY_VALUE(`desc`) AS `desc`, ANY_VALUE(`created`) AS `created`
|
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()),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape('Contact Photos'),
|
|
|
|
DBA::escape(L10n::t('Contact Photos'))
|
2012-04-18 14:56:03 +02:00
|
|
|
);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2018-01-23 04:20:35 +01:00
|
|
|
function _map_files1($rr)
|
|
|
|
{
|
2016-12-13 10:16:36 +01:00
|
|
|
$a = get_app();
|
2017-12-07 14:56:11 +01:00
|
|
|
$types = Image::supportedTypes();
|
2012-06-07 20:17:31 +02:00
|
|
|
$ext = $types[$rr['type']];
|
2017-11-27 07:44:49 +01:00
|
|
|
$filename_e = $rr['filename'];
|
2012-12-22 20:57:29 +01:00
|
|
|
|
2016-04-10 13:36:26 +02:00
|
|
|
// Take the largest picture that is smaller or equal 640 pixels
|
|
|
|
$p = q("SELECT `scale` FROM `photo` WHERE `resource-id` = '%s' AND `height` <= 640 AND `width` <= 640 ORDER BY `resource-id`, `scale` LIMIT 1",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($rr['resource-id']));
|
2018-01-23 04:20:35 +01:00
|
|
|
if ($p) {
|
2016-03-20 10:30:06 +01:00
|
|
|
$scale = $p[0]["scale"];
|
2018-01-23 04:20:35 +01:00
|
|
|
} else {
|
2016-03-20 10:30:06 +01:00
|
|
|
$scale = $rr['loq'];
|
2018-01-23 04:20:35 +01:00
|
|
|
}
|
2016-03-20 10:30:06 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
return [
|
2017-08-26 09:32:10 +02:00
|
|
|
System::baseUrl() . '/photos/' . $a->user['nickname'] . '/image/' . $rr['resource-id'],
|
2015-08-24 13:54:41 +02:00
|
|
|
$filename_e,
|
2017-08-26 09:32:10 +02:00
|
|
|
System::baseUrl() . '/photo/' . $rr['resource-id'] . '-' . $scale . '.'. $ext
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2012-06-07 20:17:31 +02:00
|
|
|
}
|
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
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$o = replace_macros($tpl, [
|
2016-12-22 15:30:23 +01:00
|
|
|
'$type' => 'image',
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2016-12-22 15:30:23 +01:00
|
|
|
'$path' => $path,
|
|
|
|
'$folders' => $albums,
|
|
|
|
'$files' => $files,
|
2018-01-22 13:29:50 +01:00
|
|
|
'$cancel' => L10n::t('Cancel'),
|
2015-07-28 17:20:40 +02:00
|
|
|
'$nickname' => $a->user['nickname'],
|
2018-01-24 03:59:16 +01:00
|
|
|
'$upload' => L10n::t('Upload')
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
break;
|
|
|
|
case "file":
|
2016-12-22 15:30:23 +01:00
|
|
|
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
|
|
|
|
2018-01-23 04:20:35 +01:00
|
|
|
function _map_files2($rr)
|
|
|
|
{
|
2016-12-13 10:16:36 +01:00
|
|
|
$a = get_app();
|
2018-01-23 04:20:35 +01:00
|
|
|
list($m1,$m2) = explode("/", $rr['filetype']);
|
2012-04-18 13:23:42 +02:00
|
|
|
$filetype = ( (file_exists("images/icons/$m1.png"))?$m1:"zip");
|
2017-11-27 07:44:49 +01:00
|
|
|
$filename_e = $rr['filename'];
|
2012-12-22 20:57:29 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
return [System::baseUrl() . '/attach/' . $rr['id'], $filename_e, System::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);
|
2018-01-15 14:05:12 +01:00
|
|
|
$o = replace_macros($tpl, [
|
2016-12-22 15:30:23 +01:00
|
|
|
'$type' => 'file',
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2018-01-22 13:29:50 +01:00
|
|
|
'$path' => [ [ "", L10n::t("Files")] ],
|
2016-12-22 15:30:23 +01:00
|
|
|
'$folders' => false,
|
2018-01-23 04:20:35 +01:00
|
|
|
'$files' => $files,
|
2018-01-22 13:29:50 +01:00
|
|
|
'$cancel' => L10n::t('Cancel'),
|
2015-07-28 17:20:40 +02:00
|
|
|
'$nickname' => $a->user['nickname'],
|
2018-01-24 03:59:16 +01:00
|
|
|
'$upload' => L10n::t('Upload')
|
2018-01-15 14:05:12 +01: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
|
|
|
|
2018-01-23 04:20:35 +01:00
|
|
|
if (x($_GET, 'mode')) {
|
2015-07-28 17:20:40 +02:00
|
|
|
return $o;
|
|
|
|
} else {
|
|
|
|
echo $o;
|
|
|
|
killme();
|
|
|
|
}
|
2012-04-18 13:23:42 +02:00
|
|
|
}
|