2011-03-30 00:59:28 -04:00
|
|
|
<?php
|
2018-01-21 13:33:59 -05:00
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 10:18:46 -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/>.
|
|
|
|
*
|
2018-01-21 13:33:59 -05:00
|
|
|
*/
|
2020-02-09 10:18:46 -05:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2022-04-10 07:03:24 -04:00
|
|
|
use Friendica\Core\System;
|
2019-12-30 17:00:08 -05:00
|
|
|
use Friendica\DI;
|
2022-04-10 07:03:24 -04:00
|
|
|
use Friendica\Module\Response;
|
2019-12-27 16:19:28 -05:00
|
|
|
use Friendica\Module\Security\Login;
|
2022-09-11 03:00:16 -04:00
|
|
|
use Friendica\Util\XML;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2022-09-11 03:00:16 -04:00
|
|
|
function oexchange_init(App $a)
|
|
|
|
{
|
|
|
|
if ((DI::args()->getArgc() <= 1) || (DI::args()->getArgv()[1] != 'xrd')) {
|
|
|
|
return;
|
|
|
|
}
|
2011-03-30 00:59:28 -04:00
|
|
|
|
2022-09-11 03:00:16 -04:00
|
|
|
$baseURL = DI::baseUrl()->get();
|
2011-03-30 00:59:28 -04:00
|
|
|
|
2022-09-11 03:00:16 -04:00
|
|
|
$xml = null;
|
|
|
|
|
|
|
|
XML::fromArray([
|
|
|
|
'XRD' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'xmlns' => 'http://docs.oasis-open.org/ns/xri/xrd-1.0',
|
|
|
|
],
|
|
|
|
'Subject' => $baseURL,
|
|
|
|
'1:Property' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'type' => 'http://www.oexchange.org/spec/0.8/prop/vendor',
|
|
|
|
],
|
|
|
|
'Friendica'
|
|
|
|
],
|
|
|
|
'2:Property' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'type' => 'http://www.oexchange.org/spec/0.8/prop/title',
|
|
|
|
],
|
|
|
|
'Friendica Social Network'
|
|
|
|
],
|
|
|
|
'3:Property' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'type' => 'http://www.oexchange.org/spec/0.8/prop/name',
|
|
|
|
],
|
|
|
|
'Friendica'
|
|
|
|
],
|
|
|
|
'4:Property' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'type' => 'http://www.oexchange.org/spec/0.8/prop/prompt',
|
|
|
|
],
|
|
|
|
'Send to Friendica'
|
|
|
|
],
|
|
|
|
'1:link' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'rel' => 'icon',
|
|
|
|
'type' => 'image/png',
|
|
|
|
'href' => $baseURL . '/images/friendica-16.png'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'2:link' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'rel' => 'icon32',
|
|
|
|
'type' => 'image/png',
|
|
|
|
'href' => $baseURL . '/images/friendica-32.png'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'3:link' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'rel' => 'http://www.oexchange.org/spec/0.8/rel/offer',
|
|
|
|
'type' => 'text/html',
|
|
|
|
'href' => $baseURL . '/oexchange'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
],
|
|
|
|
], $xml);
|
|
|
|
|
|
|
|
System::httpExit($xml->saveXML(), Response::TYPE_XML, 'application/xrd+xml');
|
2011-03-30 00:59:28 -04:00
|
|
|
}
|
|
|
|
|
2017-01-09 07:14:25 -05:00
|
|
|
function oexchange_content(App $a) {
|
2011-03-30 00:59:28 -04:00
|
|
|
|
2018-07-19 09:52:05 -04:00
|
|
|
if (!local_user()) {
|
2017-12-17 11:40:59 -05:00
|
|
|
$o = Login::form();
|
2011-03-30 00:59:28 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2021-07-25 09:08:22 -04:00
|
|
|
if ((DI::args()->getArgc() > 1) && DI::args()->getArgv()[1] === 'done') {
|
2011-03-30 00:59:28 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-16 10:20:51 -05:00
|
|
|
$url = !empty($_REQUEST['url']) ? trim($_REQUEST['url']) : '';
|
|
|
|
$title = !empty($_REQUEST['title']) ? trim($_REQUEST['title']) : '';
|
|
|
|
$description = !empty($_REQUEST['description']) ? trim($_REQUEST['description']) : '';
|
|
|
|
$tags = !empty($_REQUEST['tags']) ? trim($_REQUEST['tags']) : '';
|
2011-09-20 19:57:05 -04:00
|
|
|
|
2021-02-16 10:20:51 -05:00
|
|
|
$s = \Friendica\Content\Text\BBCode::embedURL($url, true, $title, $description, $tags);
|
2011-03-30 00:59:28 -04:00
|
|
|
|
2018-07-19 09:52:05 -04:00
|
|
|
if (!strlen($s)) {
|
2011-03-30 00:59:28 -04:00
|
|
|
return;
|
2017-01-09 18:10:32 -05:00
|
|
|
}
|
2011-03-30 00:59:28 -04:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$post = [];
|
2011-03-30 00:59:28 -04:00
|
|
|
|
|
|
|
$post['profile_uid'] = local_user();
|
2018-07-19 09:52:05 -04:00
|
|
|
$post['return'] = '/oexchange/done';
|
2018-03-07 16:24:13 -05:00
|
|
|
$post['body'] = Friendica\Content\Text\HTML::toBBCode($s);
|
2011-03-30 00:59:28 -04:00
|
|
|
|
2012-02-16 05:52:35 -05:00
|
|
|
$_REQUEST = $post;
|
2011-03-30 00:59:28 -04:00
|
|
|
require_once('mod/item.php');
|
|
|
|
item_post($a);
|
|
|
|
}
|