2012-04-18 11:23:42 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-06 23:13:00 +00: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 11:23:42 +00:00
|
|
|
* @package Friendica\modules
|
|
|
|
* @subpackage FileBrowser
|
|
|
|
* @author Fabio Comuni <fabrixxm@kirgroup.com>
|
|
|
|
*/
|
2012-06-07 18:17:31 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2022-04-10 11:03:24 +00:00
|
|
|
use Friendica\Core\System;
|
2018-07-23 22:44:05 +00:00
|
|
|
use Friendica\Database\DBA;
|
2020-01-01 11:35:44 +00:00
|
|
|
use Friendica\DI;
|
2020-08-18 22:18:48 +00:00
|
|
|
use Friendica\Model\Photo;
|
2019-10-18 01:26:15 +00:00
|
|
|
use Friendica\Util\Images;
|
2019-04-26 02:06:27 +00:00
|
|
|
use Friendica\Util\Strings;
|
2012-06-07 18:17:31 +00:00
|
|
|
|
2012-04-18 11:23:42 +00:00
|
|
|
/**
|
|
|
|
* @param App $a
|
2019-01-07 06:07:42 +00:00
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2012-04-18 11:23:42 +00:00
|
|
|
*/
|
2018-01-23 03:20:35 +00:00
|
|
|
function fbrowser_content(App $a)
|
|
|
|
{
|
2022-10-20 19:02:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2022-05-18 02:13:54 +00:00
|
|
|
System::exit();
|
2017-01-27 04:04:38 +00:00
|
|
|
}
|
2012-04-18 11:23:42 +00:00
|
|
|
|
2021-07-25 13:08:22 +00:00
|
|
|
if (DI::args()->getArgc() == 1) {
|
2022-05-18 02:13:54 +00:00
|
|
|
System::exit();
|
2017-01-27 04:04:38 +00:00
|
|
|
}
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2019-04-26 02:06:27 +00:00
|
|
|
// Needed to match the correct template in a module that uses a different theme than the user/site/default
|
2022-06-20 00:45:53 +00:00
|
|
|
$theme = Strings::sanitizeFilePathItem($_GET['theme'] ?? '');
|
2019-04-26 02:06:27 +00:00
|
|
|
if ($theme && is_file("view/theme/$theme/config.php")) {
|
|
|
|
$a->setCurrentTheme($theme);
|
|
|
|
}
|
|
|
|
|
2015-07-28 15:20:40 +00:00
|
|
|
$template_file = "filebrowser.tpl";
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2019-01-07 17:51:48 +00:00
|
|
|
$o = '';
|
|
|
|
|
2021-07-25 13:08:22 +00:00
|
|
|
switch (DI::args()->getArgv()[1]) {
|
2012-04-18 11:23:42 +00:00
|
|
|
case "image":
|
2020-04-22 02:14:11 +00:00
|
|
|
$path = ['' => DI::l10n()->t('Photos')];
|
2012-04-18 12:56:03 +00:00
|
|
|
$albums = false;
|
2012-04-18 13:15:52 +00:00
|
|
|
$sql_extra = "";
|
|
|
|
$sql_extra2 = " ORDER BY created DESC LIMIT 0, 10";
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2021-10-08 04:10:45 +00:00
|
|
|
if (DI::args()->getArgc() == 2) {
|
2021-10-11 14:21:10 +00:00
|
|
|
$photos = DBA::toArray(DBA::p("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = ? AND NOT `photo-type` IN (?, ?)",
|
2022-10-20 19:02:49 +00:00
|
|
|
DI::userSession()->getLocalUserId(),
|
2021-10-11 14:21:10 +00:00
|
|
|
Photo::CONTACT_AVATAR,
|
|
|
|
Photo::CONTACT_BANNER
|
2021-10-08 04:10:45 +00:00
|
|
|
));
|
2015-11-08 11:05:23 +00:00
|
|
|
|
2020-04-22 02:14:11 +00:00
|
|
|
$albums = array_column($photos, 'album');
|
2012-04-18 11:23:42 +00:00
|
|
|
}
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2021-07-25 13:08:22 +00:00
|
|
|
if (DI::args()->getArgc() == 3) {
|
|
|
|
$album = DI::args()->getArgv()[2];
|
2018-07-21 13:10:13 +00:00
|
|
|
$sql_extra = sprintf("AND `album` = '%s' ", DBA::escape($album));
|
2012-04-18 13:15:52 +00:00
|
|
|
$sql_extra2 = "";
|
2020-04-22 02:14:11 +00:00
|
|
|
$path[$album] = $album;
|
2012-04-18 12:56:03 +00:00
|
|
|
}
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2021-10-08 04:10:45 +00: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 19:24:07 +00:00
|
|
|
min(`scale`) AS `hiq`, max(`scale`) AS `loq`, ANY_VALUE(`desc`) AS `desc`, ANY_VALUE(`created`) AS `created`
|
2021-10-11 14:21:10 +00:00
|
|
|
FROM `photo` WHERE `uid` = ? $sql_extra AND NOT `photo-type` IN (?, ?)
|
2012-04-18 13:15:52 +00:00
|
|
|
GROUP BY `resource-id` $sql_extra2",
|
2022-10-20 19:02:49 +00:00
|
|
|
DI::userSession()->getLocalUserId(),
|
2021-10-11 14:21:10 +00:00
|
|
|
Photo::CONTACT_AVATAR,
|
|
|
|
Photo::CONTACT_BANNER
|
2021-10-08 04:10:45 +00:00
|
|
|
));
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2018-01-23 03:20:35 +00:00
|
|
|
function _map_files1($rr)
|
|
|
|
{
|
2020-01-04 22:42:01 +00:00
|
|
|
$a = DI::app();
|
2019-10-18 01:26:15 +00:00
|
|
|
$types = Images::supportedTypes();
|
2012-06-07 18:17:31 +00:00
|
|
|
$ext = $types[$rr['type']];
|
2017-11-27 06:44:49 +00:00
|
|
|
$filename_e = $rr['filename'];
|
2012-12-22 19:57:29 +00:00
|
|
|
|
2016-04-10 11:36:26 +00:00
|
|
|
// Take the largest picture that is smaller or equal 640 pixels
|
2021-10-04 10:58:28 +00:00
|
|
|
$photo = Photo::selectFirst(['scale'], ["`resource-id` = ? AND `height` <= ? AND `width` <= ?", $rr['resource-id'], 640, 640], ['order' => ['scale']]);
|
2021-10-03 15:02:20 +00:00
|
|
|
$scale = $photo['scale'] ?? $rr['loq'];
|
2016-03-20 09:30:06 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
return [
|
2021-08-09 19:48:39 +00:00
|
|
|
DI::baseUrl() . '/photos/' . $a->getLoggedInUserNickname() . '/image/' . $rr['resource-id'],
|
2015-08-24 11:54:41 +00:00
|
|
|
$filename_e,
|
2022-10-03 21:23:04 +00:00
|
|
|
DI::baseUrl() . '/photo/' . $rr['resource-id'] . '-' . $scale . '.'. $ext,
|
|
|
|
$rr['desc']
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2012-06-07 18:17:31 +00:00
|
|
|
}
|
2015-11-08 11:05:23 +00:00
|
|
|
$files = array_map("_map_files1", $r);
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate($template_file);
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2018-10-31 14:35:50 +00:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2016-12-22 14:30:23 +00:00
|
|
|
'$type' => 'image',
|
|
|
|
'$path' => $path,
|
|
|
|
'$folders' => $albums,
|
|
|
|
'$files' => $files,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$cancel' => DI::l10n()->t('Cancel'),
|
2021-08-09 19:48:39 +00:00
|
|
|
'$nickname' => $a->getLoggedInUserNickname(),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$upload' => DI::l10n()->t('Upload')
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2012-04-18 11:23:42 +00:00
|
|
|
break;
|
|
|
|
case "file":
|
2021-07-25 13:08:22 +00:00
|
|
|
if (DI::args()->getArgc()==2) {
|
2022-10-20 19:02:49 +00:00
|
|
|
$files = DBA::selectToArray('attach', ['id', 'filename', 'filetype'], ['uid' => DI::userSession()->getLocalUserId()]);
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2018-01-23 03:20:35 +00:00
|
|
|
function _map_files2($rr)
|
|
|
|
{
|
2019-01-07 06:23:49 +00:00
|
|
|
list($m1, $m2) = explode("/", $rr['filetype']);
|
2012-04-18 11:23:42 +00:00
|
|
|
$filetype = ( (file_exists("images/icons/$m1.png"))?$m1:"zip");
|
2017-11-27 06:44:49 +00:00
|
|
|
$filename_e = $rr['filename'];
|
2012-12-22 19:57:29 +00:00
|
|
|
|
2019-12-30 22:00:08 +00:00
|
|
|
return [DI::baseUrl() . '/attach/' . $rr['id'], $filename_e, DI::baseUrl() . '/images/icons/16/' . $filetype . '.png'];
|
2012-04-18 11:23:42 +00:00
|
|
|
}
|
2015-11-08 11:05:23 +00:00
|
|
|
$files = array_map("_map_files2", $files);
|
2015-08-24 11:54:41 +00:00
|
|
|
|
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate($template_file);
|
2018-10-31 14:35:50 +00:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2016-12-22 14:30:23 +00:00
|
|
|
'$type' => 'file',
|
2021-10-25 03:07:24 +00:00
|
|
|
'$path' => ['' => DI::l10n()->t('Files')],
|
2016-12-22 14:30:23 +00:00
|
|
|
'$folders' => false,
|
2018-01-23 03:20:35 +00:00
|
|
|
'$files' => $files,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$cancel' => DI::l10n()->t('Cancel'),
|
2021-08-09 19:48:39 +00:00
|
|
|
'$nickname' => $a->getLoggedInUserNickname(),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$upload' => DI::l10n()->t('Upload')
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2012-04-18 11:23:42 +00:00
|
|
|
}
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2012-04-18 11:23:42 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_GET['mode'])) {
|
2015-07-28 15:20:40 +00:00
|
|
|
return $o;
|
|
|
|
} else {
|
2022-04-10 11:03:24 +00:00
|
|
|
System::httpExit($o);
|
2015-07-28 15:20:40 +00:00
|
|
|
}
|
2012-04-18 11:23:42 +00:00
|
|
|
}
|