friendica-addons/fromapp/fromapp.php

82 lines
2.3 KiB
PHP
Raw Permalink Normal View History

2012-09-24 10:20:36 +02:00
<?php
/**
* Name: FromApp
* Description: Change the displayed application you are posting from
* Version: 1.0
* Author: Commander Zot
*
*/
use Friendica\App;
use Friendica\Core\Hook;
use Friendica\Core\Logger;
use Friendica\Core\Renderer;
use Friendica\DI;
2012-09-24 10:20:36 +02:00
2018-01-22 20:03:11 +01:00
function fromapp_install()
{
Hook::register('post_local', 'addon/fromapp/fromapp.php', 'fromapp_post_hook');
Hook::register('addon_settings', 'addon/fromapp/fromapp.php', 'fromapp_settings');
Hook::register('addon_settings_post', 'addon/fromapp/fromapp.php', 'fromapp_settings_post');
Logger::notice("installed fromapp");
2012-09-24 10:20:36 +02:00
}
function fromapp_settings_post($post)
2018-01-22 20:03:11 +01:00
{
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId() || empty($_POST['fromapp-submit'])) {
2012-09-24 10:20:36 +02:00
return;
2018-01-22 20:03:11 +01:00
}
2012-09-24 10:20:36 +02:00
2022-10-20 23:51:49 +02:00
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'fromapp', 'app', $_POST['fromapp-input']);
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'fromapp', 'force', intval($_POST['fromapp-force']));
2012-09-24 10:20:36 +02:00
}
function fromapp_settings(array &$data)
2018-01-22 20:03:11 +01:00
{
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId()) {
2012-09-24 10:20:36 +02:00
return;
2018-01-22 20:03:11 +01:00
}
2012-09-24 10:20:36 +02:00
2022-10-20 23:51:49 +02:00
$fromapp = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'fromapp', 'app', '');
$force = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'fromapp', 'force'));
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/fromapp/');
$html = Renderer::replaceMacros($t, [
'$fromapp' => ['fromapp-input', DI::l10n()->t('The application name you would like to show your posts originating from. Separate different app names with a comma. A random one will then be selected for every posting.'), $fromapp],
'$force' => ['fromapp-force', DI::l10n()->t('Use this application name even if another application was used.'), $force],
]);
$data = [
'addon' => 'fromapp',
'title' => DI::l10n()->t('FromApp Settings'),
'html' => $html,
];
2012-09-24 10:20:36 +02:00
}
function fromapp_post_hook(&$item)
{
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId()) {
return;
}
2012-09-24 10:20:36 +02:00
2022-10-20 23:51:49 +02:00
if (DI::userSession()->getLocalUserId() != $item['uid']) {
return;
}
2012-09-24 10:20:36 +02:00
2022-10-20 23:51:49 +02:00
$app = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'fromapp', 'app');
$force = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'fromapp', 'force'));
2012-09-24 10:20:36 +02:00
if (is_null($app) || (! strlen($app))) {
return;
}
2012-09-24 10:20:36 +02:00
if (strlen(trim($item['app'])) && (! $force)) {
2012-09-25 02:21:30 +02:00
return;
}
2012-09-25 02:21:30 +02:00
$apps = explode(',', $app);
$item['app'] = trim($apps[mt_rand(0, count($apps)-1)]);
2012-09-24 10:20:36 +02:00
return;
2013-11-19 13:57:51 +01:00
}