mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Add itemsource module
This commit is contained in:
parent
eb714f0487
commit
d0681075bf
3 changed files with 72 additions and 0 deletions
|
@ -26,6 +26,11 @@ class Conversation
|
|||
const PARCEL_TWITTER = 67;
|
||||
const PARCEL_UNKNOWN = 255;
|
||||
|
||||
public static function getByItemUri($item_uri)
|
||||
{
|
||||
return DBA::selectFirst('conversation', [], ['item-uri' => $item_uri]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Store the conversation data
|
||||
*
|
||||
|
|
39
src/Module/Itemsource.php
Normal file
39
src/Module/Itemsource.php
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Module;
|
||||
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\Model;
|
||||
|
||||
/**
|
||||
* @author Hypolite Petovan <mrpetovan@gmail.com>
|
||||
*/
|
||||
class Itemsource extends \Friendica\BaseModule
|
||||
{
|
||||
public static function content()
|
||||
{
|
||||
if (!is_site_admin()) {
|
||||
return;
|
||||
}
|
||||
|
||||
$source = '';
|
||||
$item_uri = '';
|
||||
if (!empty($_REQUEST['guid'])) {
|
||||
$item = Model\Item::selectFirst([], ['guid' => $_REQUEST['guid']]);
|
||||
|
||||
$conversation = Model\Conversation::getByItemUri($item['uri']);
|
||||
|
||||
$item_uri = $item['uri'];
|
||||
$source = htmlspecialchars($conversation['source']);
|
||||
}
|
||||
|
||||
$tpl = get_markup_template('debug/itemsource.tpl');
|
||||
$o = replace_macros($tpl, [
|
||||
'$guid' => ['guid', L10n::t('Item Guid'), htmlentities(defaults($_REQUEST, 'guid', '')), ''],
|
||||
'$source' => $source,
|
||||
'$item_uri' => $item_uri
|
||||
]);
|
||||
|
||||
return $o;
|
||||
}
|
||||
}
|
28
view/templates/debug/itemsource.tpl
Normal file
28
view/templates/debug/itemsource.tpl
Normal file
|
@ -0,0 +1,28 @@
|
|||
<h2>Item Source</h2>
|
||||
<form action="itemsource" method="get" class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
{{include file="field_input.tpl" field=$guid}}
|
||||
</div>
|
||||
<p><button type="submit" class="btn btn-primary">Submit</button></p>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
{{if $source}}
|
||||
<div class="itemsource-results">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Item URI</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{$item_uri}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Source</h3>
|
||||
</div>
|
||||
<pre><code class="language-php">{{$source}}</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
Loading…
Reference in a new issue