2019-07-14 21:49:38 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-07-14 21:49:38 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module\Item;
|
|
|
|
|
2021-08-01 09:01:31 -04:00
|
|
|
use DateTime;
|
2019-07-14 21:49:38 -04:00
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Content\Feature;
|
2019-11-28 12:53:12 -05:00
|
|
|
use Friendica\Core\ACL;
|
2019-07-14 21:49:38 -04:00
|
|
|
use Friendica\Core\Hook;
|
|
|
|
use Friendica\Core\Renderer;
|
2019-11-28 12:53:12 -05:00
|
|
|
use Friendica\Core\Theme;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2021-07-24 07:49:11 -04:00
|
|
|
use Friendica\Model\Contact;
|
2019-07-14 21:49:38 -04:00
|
|
|
use Friendica\Model\Item;
|
|
|
|
use Friendica\Model\User;
|
2019-12-27 16:19:28 -05:00
|
|
|
use Friendica\Module\Security\Login;
|
2019-07-14 21:49:38 -04:00
|
|
|
use Friendica\Network\HTTPException\NotImplementedException;
|
|
|
|
use Friendica\Util\Crypto;
|
2021-08-01 09:01:31 -04:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
|
|
|
use Friendica\Util\Temporal;
|
2019-07-14 21:49:38 -04:00
|
|
|
|
|
|
|
class Compose extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function post(array $parameters = [])
|
2019-07-14 21:49:38 -04:00
|
|
|
{
|
|
|
|
if (!empty($_REQUEST['body'])) {
|
|
|
|
$_REQUEST['return'] = 'network';
|
|
|
|
require_once 'mod/item.php';
|
2019-12-15 16:34:11 -05:00
|
|
|
item_post(DI::app());
|
2019-07-14 21:49:38 -04:00
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Please enter a post body.'));
|
2019-07-14 21:49:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-07-14 21:49:38 -04:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
|
|
|
return Login::form('compose', false);
|
|
|
|
}
|
|
|
|
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2019-07-14 21:49:38 -04:00
|
|
|
|
|
|
|
if ($a->getCurrentTheme() !== 'frio') {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new NotImplementedException(DI::l10n()->t('This feature is only available with the frio theme.'));
|
2019-07-14 21:49:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// @TODO Retrieve parameter from router
|
2019-11-28 12:53:12 -05:00
|
|
|
$posttype = $parameters['type'] ?? Item::PT_ARTICLE;
|
2019-07-14 21:49:38 -04:00
|
|
|
if (!in_array($posttype, [Item::PT_ARTICLE, Item::PT_PERSONAL_NOTE])) {
|
|
|
|
switch ($posttype) {
|
2019-07-27 18:06:47 -04:00
|
|
|
case 'note':
|
|
|
|
$posttype = Item::PT_PERSONAL_NOTE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$posttype = Item::PT_ARTICLE;
|
|
|
|
break;
|
2019-07-14 21:49:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-22 03:54:28 -05:00
|
|
|
$user = User::getById(local_user(), ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'default-location']);
|
2019-07-14 21:49:38 -04:00
|
|
|
|
2019-12-15 17:28:01 -05:00
|
|
|
$aclFormatter = DI::aclFormatter();
|
2019-10-22 18:40:14 -04:00
|
|
|
|
2019-11-28 12:53:12 -05:00
|
|
|
$contact_allow_list = $aclFormatter->expand($user['allow_cid']);
|
|
|
|
$group_allow_list = $aclFormatter->expand($user['allow_gid']);
|
|
|
|
$contact_deny_list = $aclFormatter->expand($user['deny_cid']);
|
|
|
|
$group_deny_list = $aclFormatter->expand($user['deny_gid']);
|
|
|
|
|
2019-07-14 21:49:38 -04:00
|
|
|
switch ($posttype) {
|
|
|
|
case Item::PT_PERSONAL_NOTE:
|
2020-01-18 14:52:34 -05:00
|
|
|
$compose_title = DI::l10n()->t('Compose new personal note');
|
2019-07-14 21:49:38 -04:00
|
|
|
$type = 'note';
|
2019-07-14 22:48:08 -04:00
|
|
|
$doesFederate = false;
|
2021-07-24 16:34:07 -04:00
|
|
|
$contact_allow_list = [$a->getContactId()];
|
2019-11-28 12:53:12 -05:00
|
|
|
$group_allow_list = [];
|
|
|
|
$contact_deny_list = [];
|
|
|
|
$group_deny_list = [];
|
2019-07-14 21:49:38 -04:00
|
|
|
break;
|
|
|
|
default:
|
2020-01-18 14:52:34 -05:00
|
|
|
$compose_title = DI::l10n()->t('Compose new post');
|
2019-07-14 21:49:38 -04:00
|
|
|
$type = 'post';
|
2019-07-14 22:48:08 -04:00
|
|
|
$doesFederate = true;
|
2019-11-28 12:53:12 -05:00
|
|
|
|
2019-12-19 07:48:08 -05:00
|
|
|
$contact_allow = $_REQUEST['contact_allow'] ?? '';
|
|
|
|
$group_allow = $_REQUEST['group_allow'] ?? '';
|
|
|
|
$contact_deny = $_REQUEST['contact_deny'] ?? '';
|
|
|
|
$group_deny = $_REQUEST['group_deny'] ?? '';
|
|
|
|
|
|
|
|
if ($contact_allow
|
|
|
|
. $group_allow
|
|
|
|
. $contact_deny
|
|
|
|
. $group_deny)
|
2019-11-28 12:53:12 -05:00
|
|
|
{
|
2019-12-19 07:48:08 -05:00
|
|
|
$contact_allow_list = $contact_allow ? explode(',', $contact_allow) : [];
|
|
|
|
$group_allow_list = $group_allow ? explode(',', $group_allow) : [];
|
|
|
|
$contact_deny_list = $contact_deny ? explode(',', $contact_deny) : [];
|
|
|
|
$group_deny_list = $group_deny ? explode(',', $group_deny) : [];
|
2019-11-28 12:53:12 -05:00
|
|
|
}
|
|
|
|
|
2019-07-14 21:49:38 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$title = $_REQUEST['title'] ?? '';
|
|
|
|
$category = $_REQUEST['category'] ?? '';
|
|
|
|
$body = $_REQUEST['body'] ?? '';
|
|
|
|
$location = $_REQUEST['location'] ?? $user['default-location'];
|
|
|
|
$wall = $_REQUEST['wall'] ?? $type == 'post';
|
2019-07-14 22:48:08 -04:00
|
|
|
|
2019-07-14 21:49:38 -04:00
|
|
|
$jotplugins = '';
|
|
|
|
Hook::callAll('jot_tool', $jotplugins);
|
|
|
|
|
|
|
|
// Output
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()->registerFooterScript(Theme::getPathForFile('js/ajaxupload.js'));
|
|
|
|
DI::page()->registerFooterScript(Theme::getPathForFile('js/linkPreview.js'));
|
|
|
|
DI::page()->registerFooterScript(Theme::getPathForFile('js/compose.js'));
|
2019-07-14 21:49:38 -04:00
|
|
|
|
2021-07-24 16:34:07 -04:00
|
|
|
$contact = Contact::getById($a->getContactId());
|
2021-07-24 07:49:11 -04:00
|
|
|
|
2019-07-14 21:49:38 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('item/compose.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
|
|
|
'$compose_title'=> $compose_title,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$visibility_title'=> DI::l10n()->t('Visibility'),
|
2019-07-14 21:49:38 -04:00
|
|
|
'$id' => 0,
|
|
|
|
'$posttype' => $posttype,
|
|
|
|
'$type' => $type,
|
|
|
|
'$wall' => $wall,
|
2019-08-06 07:08:49 -04:00
|
|
|
'$default' => '',
|
2021-07-24 07:49:11 -04:00
|
|
|
'$mylink' => DI::baseUrl()->remove($contact['url']),
|
2020-01-18 14:52:34 -05:00
|
|
|
'$mytitle' => DI::l10n()->t('This is you'),
|
2021-07-24 07:49:11 -04:00
|
|
|
'$myphoto' => DI::baseUrl()->remove($contact['thumb']),
|
2020-01-18 14:52:34 -05:00
|
|
|
'$submit' => DI::l10n()->t('Submit'),
|
|
|
|
'$edbold' => DI::l10n()->t('Bold'),
|
|
|
|
'$editalic' => DI::l10n()->t('Italic'),
|
|
|
|
'$eduline' => DI::l10n()->t('Underline'),
|
|
|
|
'$edquote' => DI::l10n()->t('Quote'),
|
|
|
|
'$edcode' => DI::l10n()->t('Code'),
|
|
|
|
'$edimg' => DI::l10n()->t('Image'),
|
|
|
|
'$edurl' => DI::l10n()->t('Link'),
|
|
|
|
'$edattach' => DI::l10n()->t('Link or Media'),
|
|
|
|
'$prompttext' => DI::l10n()->t('Please enter a image/video/audio/webpage URL:'),
|
|
|
|
'$preview' => DI::l10n()->t('Preview'),
|
|
|
|
'$location_set' => DI::l10n()->t('Set your location'),
|
|
|
|
'$location_clear' => DI::l10n()->t('Clear the location'),
|
|
|
|
'$location_unavailable' => DI::l10n()->t('Location services are unavailable on your device'),
|
|
|
|
'$location_disabled' => DI::l10n()->t('Location services are disabled. Please check the website\'s permissions on your device'),
|
|
|
|
'$wait' => DI::l10n()->t('Please wait'),
|
|
|
|
'$placeholdertitle' => DI::l10n()->t('Set title'),
|
|
|
|
'$placeholdercategory' => (Feature::isEnabled(local_user(),'categories') ? DI::l10n()->t('Categories (comma-separated list)') : ''),
|
2021-08-01 09:01:31 -04:00
|
|
|
'$scheduled_at' => Temporal::getDateTimeField(
|
|
|
|
new DateTime(),
|
|
|
|
DateTime::createFromFormat(DateTimeFormat::MYSQL, DateTimeFormat::local('now + 6 months')),
|
|
|
|
null,
|
|
|
|
DI::l10n()->t('Scheduled at'),
|
|
|
|
'scheduled_at',
|
|
|
|
),
|
|
|
|
|
2019-11-28 12:53:12 -05:00
|
|
|
|
2019-07-14 21:49:38 -04:00
|
|
|
'$title' => $title,
|
|
|
|
'$category' => $category,
|
|
|
|
'$body' => $body,
|
|
|
|
'$location' => $location,
|
2019-11-28 12:53:12 -05:00
|
|
|
|
|
|
|
'$contact_allow'=> implode(',', $contact_allow_list),
|
|
|
|
'$group_allow' => implode(',', $group_allow_list),
|
|
|
|
'$contact_deny' => implode(',', $contact_deny_list),
|
|
|
|
'$group_deny' => implode(',', $group_deny_list),
|
|
|
|
|
2019-07-14 21:49:38 -04:00
|
|
|
'$jotplugins' => $jotplugins,
|
2019-11-28 12:53:12 -05:00
|
|
|
'$rand_num' => Crypto::randomDigits(12),
|
2021-08-09 16:33:46 -04:00
|
|
|
'$acl_selector' => ACL::getFullSelectorHTML(DI::page(), $a->getLoggedInUserId(), $doesFederate, [
|
2019-11-28 12:53:12 -05:00
|
|
|
'allow_cid' => $contact_allow_list,
|
|
|
|
'allow_gid' => $group_allow_list,
|
|
|
|
'deny_cid' => $contact_deny_list,
|
|
|
|
'deny_gid' => $group_deny_list,
|
|
|
|
]),
|
2019-07-14 21:49:38 -04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|