2011-03-30 06:59:28 +02:00
|
|
|
<?php
|
2018-01-21 19:33:59 +01:00
|
|
|
/**
|
|
|
|
* @file mod/oexchange.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-12-17 17:40:59 +01:00
|
|
|
use Friendica\Module\Login;
|
2018-01-27 05:09:48 +01:00
|
|
|
use Friendica\Util\Network;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function oexchange_init(App $a) {
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2017-01-10 00:10:32 +01:00
|
|
|
if (($a->argc > 1) && ($a->argv[1] === 'xrd')) {
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('oexchange_xrd.tpl');
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$o = replace_macros($tpl, ['$base' => System::baseUrl()]);
|
2011-03-30 06:59:28 +02:00
|
|
|
echo $o;
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function oexchange_content(App $a) {
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2017-12-17 17:40:59 +01:00
|
|
|
$o = Login::form();
|
2011-03-30 06:59:28 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (($a->argc > 1) && $a->argv[1] === 'done') {
|
2018-01-21 19:33:59 +01:00
|
|
|
info(L10n::t('Post successful.') . EOL);
|
2011-03-30 06:59:28 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-10 00:10:32 +01:00
|
|
|
$url = (((x($_REQUEST,'url')) && strlen($_REQUEST['url']))
|
2012-02-16 03:13:41 +01:00
|
|
|
? urlencode(notags(trim($_REQUEST['url']))) : '');
|
2017-01-10 00:10:32 +01:00
|
|
|
$title = (((x($_REQUEST,'title')) && strlen($_REQUEST['title']))
|
2012-02-16 03:13:41 +01:00
|
|
|
? '&title=' . urlencode(notags(trim($_REQUEST['title']))) : '');
|
2017-01-10 00:10:32 +01:00
|
|
|
$description = (((x($_REQUEST,'description')) && strlen($_REQUEST['description']))
|
2012-02-16 03:13:41 +01:00
|
|
|
? '&description=' . urlencode(notags(trim($_REQUEST['description']))) : '');
|
2017-01-10 00:10:32 +01:00
|
|
|
$tags = (((x($_REQUEST,'tags')) && strlen($_REQUEST['tags']))
|
2012-02-16 03:13:41 +01:00
|
|
|
? '&tags=' . urlencode(notags(trim($_REQUEST['tags']))) : '');
|
2011-09-21 01:57:05 +02:00
|
|
|
|
2018-01-27 17:13:41 +01:00
|
|
|
$s = Network::fetchUrl(System::baseUrl() . '/parse_url?f=&url=' . $url . $title . $description . $tags);
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2017-01-10 00:10:32 +01:00
|
|
|
if (! strlen($s)) {
|
2011-03-30 06:59:28 +02:00
|
|
|
return;
|
2017-01-10 00:10:32 +01:00
|
|
|
}
|
2011-03-30 06:59:28 +02:00
|
|
|
|
|
|
|
require_once('include/html2bbcode.php');
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$post = [];
|
2011-03-30 06:59:28 +02:00
|
|
|
|
|
|
|
$post['profile_uid'] = local_user();
|
|
|
|
$post['return'] = '/oexchange/done' ;
|
|
|
|
$post['body'] = html2bbcode($s);
|
|
|
|
$post['type'] = 'wall';
|
|
|
|
|
2012-02-16 11:52:35 +01:00
|
|
|
$_REQUEST = $post;
|
2011-03-30 06:59:28 +02:00
|
|
|
require_once('mod/item.php');
|
|
|
|
item_post($a);
|
|
|
|
}
|