mirror of
https://github.com/friendica/friendica
synced 2024-11-18 17:43:41 +00:00
Merge branch 'friendica:2022.12-rc' into new_image_presentation
This commit is contained in:
commit
d2b23d57e4
3 changed files with 47 additions and 7 deletions
35
src/Module/About.php
Normal file
35
src/Module/About.php
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @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/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Friendica\Module;
|
||||||
|
|
||||||
|
use Friendica\BaseModule;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Redirect to the friendica page
|
||||||
|
*/
|
||||||
|
class About extends BaseModule
|
||||||
|
{
|
||||||
|
protected function rawContent(array $request = [])
|
||||||
|
{
|
||||||
|
$this->baseUrl->redirect('friendica');
|
||||||
|
}
|
||||||
|
}
|
|
@ -49,6 +49,8 @@ class Update extends BaseApi
|
||||||
self::checkAllowedScope(self::SCOPE_WRITE);
|
self::checkAllowedScope(self::SCOPE_WRITE);
|
||||||
$uid = self::getCurrentUserID();
|
$uid = self::getCurrentUserID();
|
||||||
|
|
||||||
|
$owner = User::getOwnerDataById($uid);
|
||||||
|
|
||||||
$request = self::getRequest([
|
$request = self::getRequest([
|
||||||
'htmlstatus' => '',
|
'htmlstatus' => '',
|
||||||
'status' => '',
|
'status' => '',
|
||||||
|
@ -59,10 +61,12 @@ class Update extends BaseApi
|
||||||
'media_ids' => '',
|
'media_ids' => '',
|
||||||
'source' => '',
|
'source' => '',
|
||||||
'include_entities' => false,
|
'include_entities' => false,
|
||||||
|
'contact_allow' => $owner['allow_cid'],
|
||||||
|
'group_allow' => $owner['allow_gid'],
|
||||||
|
'contact_deny' => $owner['deny_cid'],
|
||||||
|
'group_deny' => $owner['deny_gid'],
|
||||||
], $request);
|
], $request);
|
||||||
|
|
||||||
$owner = User::getOwnerDataById($uid);
|
|
||||||
|
|
||||||
if (!empty($request['htmlstatus'])) {
|
if (!empty($request['htmlstatus'])) {
|
||||||
$body = HTML::toBBCodeVideo($request['htmlstatus']);
|
$body = HTML::toBBCodeVideo($request['htmlstatus']);
|
||||||
|
|
||||||
|
@ -96,10 +100,11 @@ class Update extends BaseApi
|
||||||
$item['coord'] = sprintf("%s %s", $request['lat'], $request['long']);
|
$item['coord'] = sprintf("%s %s", $request['lat'], $request['long']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$item['allow_cid'] = $owner['allow_cid'] ?? '';
|
$aclFormatter = DI::aclFormatter();
|
||||||
$item['allow_gid'] = $owner['allow_gid'] ?? '';
|
$item['allow_cid'] = $aclFormatter->toString($request['contact_allow']);
|
||||||
$item['deny_cid'] = $owner['deny_cid'] ?? '';
|
$item['allow_gid'] = $aclFormatter->toString($request['group_allow']);
|
||||||
$item['deny_gid'] = $owner['deny_gid'] ?? '';
|
$item['deny_cid'] = $aclFormatter->toString($request['contact_deny']);
|
||||||
|
$item['deny_gid'] = $aclFormatter->toString($request['group_deny']);
|
||||||
|
|
||||||
if (!empty($item['allow_cid'] . $item['allow_gid'] . $item['deny_cid'] . $item['deny_gid'])) {
|
if (!empty($item['allow_cid'] . $item['allow_gid'] . $item['deny_cid'] . $item['deny_gid'])) {
|
||||||
$item['private'] = Item::PRIVATE;
|
$item['private'] = Item::PRIVATE;
|
||||||
|
|
|
@ -318,7 +318,7 @@ return [
|
||||||
'/proofs' => [Module\Api\Mastodon\Proofs::class, [R::GET ]], // Dummy, not supported
|
'/proofs' => [Module\Api\Mastodon\Proofs::class, [R::GET ]], // Dummy, not supported
|
||||||
],
|
],
|
||||||
|
|
||||||
'/about[/more]' => [Module\Friendica::class, [R::GET]],
|
'/about[/more]' => [Module\About::class, [R::GET]],
|
||||||
|
|
||||||
'/admin' => [
|
'/admin' => [
|
||||||
'[/]' => [Module\Admin\Summary::class, [R::GET]],
|
'[/]' => [Module\Admin\Summary::class, [R::GET]],
|
||||||
|
|
Loading…
Reference in a new issue