2012-04-18 13:23:42 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-07 00:13:00 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2012-04-18 13:23:42 +02:00
|
|
|
* @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-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-24 00:44:05 +02:00
|
|
|
use Friendica\Database\DBA;
|
2020-01-01 12:35:44 +01:00
|
|
|
use Friendica\DI;
|
2020-08-19 00:18:48 +02:00
|
|
|
use Friendica\Model\Photo;
|
2019-10-18 03:26:15 +02:00
|
|
|
use Friendica\Util\Images;
|
2019-04-26 04:06:27 +02:00
|
|
|
use Friendica\Util\Strings;
|
2012-06-07 20:17:31 +02:00
|
|
|
|
2012-04-18 13:23:42 +02:00
|
|
|
/**
|
|
|
|
* @param App $a
|
2019-01-07 07:07:42 +01:00
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2012-04-18 13:23:42 +02:00
|
|
|
*/
|
2018-01-23 04:20:35 +01:00
|
|
|
function fbrowser_content(App $a)
|
|
|
|
{
|
2017-01-27 05:04:38 +01:00
|
|
|
if (!local_user()) {
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2017-01-27 05:04:38 +01:00
|
|
|
}
|
2012-04-18 13:23:42 +02:00
|
|
|
|
2021-07-25 15:08:22 +02:00
|
|
|
if (DI::args()->getArgc() == 1) {
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2017-01-27 05:04:38 +01:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2019-04-26 04:06:27 +02:00
|
|
|
// Needed to match the correct template in a module that uses a different theme than the user/site/default
|
2019-10-15 15:01:17 +02:00
|
|
|
$theme = Strings::sanitizeFilePathItem($_GET['theme'] ?? null);
|
2019-04-26 04:06:27 +02:00
|
|
|
if ($theme && is_file("view/theme/$theme/config.php")) {
|
|
|
|
$a->setCurrentTheme($theme);
|
|
|
|
}
|
|
|
|
|
2015-07-28 17:20:40 +02:00
|
|
|
$template_file = "filebrowser.tpl";
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2019-01-07 18:51:48 +01:00
|
|
|
$o = '';
|
|
|
|
|
2021-07-25 15:08:22 +02:00
|
|
|
switch (DI::args()->getArgv()[1]) {
|
2012-04-18 13:23:42 +02:00
|
|
|
case "image":
|
2020-04-22 04:14:11 +02:00
|
|
|
$path = ['' => DI::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
|
|
|
|
2021-10-08 06:10:45 +02:00
|
|
|
if (DI::args()->getArgc() == 2) {
|
2021-10-11 16:21:10 +02:00
|
|
|
$photos = DBA::toArray(DBA::p("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = ? AND NOT `photo-type` IN (?, ?)",
|
2021-10-08 06:10:45 +02:00
|
|
|
local_user(),
|
2021-10-11 16:21:10 +02:00
|
|
|
Photo::CONTACT_AVATAR,
|
|
|
|
Photo::CONTACT_BANNER
|
2021-10-08 06:10:45 +02:00
|
|
|
));
|
2015-11-08 12:05:23 +01:00
|
|
|
|
2020-04-22 04:14:11 +02:00
|
|
|
$albums = array_column($photos, 'album');
|
2012-04-18 13:23:42 +02:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2021-07-25 15:08:22 +02:00
|
|
|
if (DI::args()->getArgc() == 3) {
|
|
|
|
$album = DI::args()->getArgv()[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 = "";
|
2020-04-22 04:14:11 +02:00
|
|
|
$path[$album] = $album;
|
2012-04-18 14:56:03 +02:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2021-10-08 06:10:45 +02:00
|
|
|
$r = DBA::toArray(DBA::p("SELECT `resource-id`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`filename`) AS `filename`, ANY_VALUE(`type`) AS `type`,
|
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
|
|
|
min(`scale`) AS `hiq`, max(`scale`) AS `loq`, ANY_VALUE(`desc`) AS `desc`, ANY_VALUE(`created`) AS `created`
|
2021-10-11 16:21:10 +02:00
|
|
|
FROM `photo` WHERE `uid` = ? $sql_extra AND NOT `photo-type` IN (?, ?)
|
2012-04-18 15:15:52 +02:00
|
|
|
GROUP BY `resource-id` $sql_extra2",
|
2021-10-08 06:10:45 +02:00
|
|
|
local_user(),
|
2021-10-11 16:21:10 +02:00
|
|
|
Photo::CONTACT_AVATAR,
|
|
|
|
Photo::CONTACT_BANNER
|
2021-10-08 06:10:45 +02:00
|
|
|
));
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2018-01-23 04:20:35 +01:00
|
|
|
function _map_files1($rr)
|
|
|
|
{
|
2020-01-04 23:42:01 +01:00
|
|
|
$a = DI::app();
|
2019-10-18 03:26:15 +02:00
|
|
|
$types = Images::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
|
2021-10-04 12:58:28 +02:00
|
|
|
$photo = Photo::selectFirst(['scale'], ["`resource-id` = ? AND `height` <= ? AND `width` <= ?", $rr['resource-id'], 640, 640], ['order' => ['scale']]);
|
2021-10-03 17:02:20 +02:00
|
|
|
$scale = $photo['scale'] ?? $rr['loq'];
|
2016-03-20 10:30:06 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
return [
|
2021-08-09 21:48:39 +02:00
|
|
|
DI::baseUrl() . '/photos/' . $a->getLoggedInUserNickname() . '/image/' . $rr['resource-id'],
|
2015-08-24 13:54:41 +02:00
|
|
|
$filename_e,
|
2019-12-30 23:00:08 +01:00
|
|
|
DI::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
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate($template_file);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2016-12-22 15:30:23 +01:00
|
|
|
'$type' => 'image',
|
|
|
|
'$path' => $path,
|
|
|
|
'$folders' => $albums,
|
|
|
|
'$files' => $files,
|
2020-01-18 20:52:34 +01:00
|
|
|
'$cancel' => DI::l10n()->t('Cancel'),
|
2021-08-09 21:48:39 +02:00
|
|
|
'$nickname' => $a->getLoggedInUserNickname(),
|
2020-01-18 20:52:34 +01:00
|
|
|
'$upload' => DI::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":
|
2021-07-25 15:08:22 +02:00
|
|
|
if (DI::args()->getArgc()==2) {
|
2021-10-03 17:02:20 +02:00
|
|
|
$files = DBA::selectToArray('attach', ['id', 'filename', 'filetype'], ['uid' => local_user()]);
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2018-01-23 04:20:35 +01:00
|
|
|
function _map_files2($rr)
|
|
|
|
{
|
2019-01-07 07:23:49 +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
|
|
|
|
2019-12-30 23:00:08 +01:00
|
|
|
return [DI::baseUrl() . '/attach/' . $rr['id'], $filename_e, DI::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
|
|
|
|
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate($template_file);
|
2018-10-31 15:35:50 +01:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2016-12-22 15:30:23 +01:00
|
|
|
'$type' => 'file',
|
2021-10-25 05:07:24 +02:00
|
|
|
'$path' => ['' => DI::l10n()->t('Files')],
|
2016-12-22 15:30:23 +01:00
|
|
|
'$folders' => false,
|
2018-01-23 04:20:35 +01:00
|
|
|
'$files' => $files,
|
2020-01-18 20:52:34 +01:00
|
|
|
'$cancel' => DI::l10n()->t('Cancel'),
|
2021-08-09 21:48:39 +02:00
|
|
|
'$nickname' => $a->getLoggedInUserNickname(),
|
2020-01-18 20:52:34 +01:00
|
|
|
'$upload' => DI::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-11-30 15:06:22 +01:00
|
|
|
if (!empty($_GET['mode'])) {
|
2015-07-28 17:20:40 +02:00
|
|
|
return $o;
|
|
|
|
} else {
|
|
|
|
echo $o;
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2015-07-28 17:20:40 +02:00
|
|
|
}
|
2012-04-18 13:23:42 +02:00
|
|
|
}
|