friendica-addons/irc/irc.php

151 lines
5.2 KiB
PHP
Raw Normal View History

2012-03-03 00:12:34 +01:00
<?php
/**
* Name: IRC Chat Addon
* Description: add an Internet Relay Chat chatroom on freenode
2015-07-08 10:36:48 +02:00
* Version: 1.1
* Author: tony baldwin <https://free-haven.org/profile/tony>
* Author: Tobias Diekershoff <https://f.diekershoff.de/u/tobias>
2012-03-03 00:12:34 +01:00
*/
2019-02-26 15:44:29 +01:00
use Friendica\Core\Config;
use Friendica\Core\Hook;
2018-01-22 20:03:11 +01:00
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
use Friendica\Core\Renderer;
2012-03-03 00:12:34 +01:00
function irc_install() {
Hook::register('app_menu', 'addon/irc/irc.php', 'irc_app_menu');
Hook::register('addon_settings', 'addon/irc/irc.php', 'irc_addon_settings');
Hook::register('addon_settings_post', 'addon/irc/irc.php', 'irc_addon_settings_post');
2012-03-03 00:12:34 +01:00
}
function irc_uninstall() {
Hook::unregister('app_menu', 'addon/irc/irc.php', 'irc_app_menu');
Hook::unregister('addon_settings', 'addon/irc/irc.php', 'irc_addon_settings');
2012-03-03 00:12:34 +01:00
}
function irc_addon_settings(&$a,&$s) {
if(! local_user())
return;
/* Add our stylesheet to the page so we can make our settings look nice */
// $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->getBaseURL() . '/addon/irc/irc.css' . '" media="all" />' . "\r\n";
/* setting popular channels, auto connect channels */
$sitechats = PConfig::get( local_user(), 'irc','sitechats'); /* popular channels */
$autochans = PConfig::get( local_user(), 'irc','autochans'); /* auto connect chans */
$t = Renderer::getMarkupTemplate( "settings.tpl", "addon/irc/" );
$s .= Renderer::replaceMacros($t, [
2018-01-22 20:03:11 +01:00
'$header' => L10n::t('IRC Settings'),
'$info' => L10n::t('Here you can change the system wide settings for the channels to automatically join and access via the side bar. Note the changes you do here, only effect the channel selection if you are logged in.'),
'$submit' => L10n::t('Save Settings'),
'$autochans' => [ 'autochans', L10n::t('Channel(s) to auto connect (comma separated)'), $autochans, L10n::t('List of channels that shall automatically connected to when the app is launched.')],
'$sitechats' => [ 'sitechats', L10n::t('Popular Channels (comma separated)'), $sitechats, L10n::t('List of popular channels, will be displayed at the side and hotlinked for easy joining.') ]
2018-01-15 14:15:33 +01:00
]);
return;
}
2019-02-26 15:44:29 +01:00
function irc_addon_settings_post(&$a, &$b) {
if(!local_user())
return;
2019-02-26 15:44:29 +01:00
if(!empty($_POST['irc-submit']) && $_POST['irc-submit']) {
if (!isset($_POST['autochans'])) {
PConfig::set(local_user(), 'irc', 'autochans', trim(($_POST['autochans'])));
}
if (!isset($_POST['sitechats'])) {
PConfig::set(local_user(), 'irc', 'sitechats', trim($_POST['sitechats']));
}
/* upid pop-up thing */
2018-01-22 20:03:11 +01:00
info(L10n::t('IRC settings saved.') . EOL);
}
}
2012-03-03 00:12:34 +01:00
function irc_app_menu($a,&$b) {
2018-01-22 20:03:11 +01:00
$b['app_menu'][] = '<div class="app-title"><a href="irc">' . L10n::t('IRC Chatroom') . '</a></div>';
2012-03-03 00:12:34 +01:00
}
function irc_module() {
return;
2012-03-03 00:12:34 +01:00
}
function irc_content(&$a) {
$baseurl = $a->getBaseURL() . '/addon/irc';
$o = '';
/* set the list of popular channels */
if (local_user()) {
$sitechats = PConfig::get( local_user(), 'irc', 'sitechats');
if (!$sitechats)
$sitechats = Config::get('irc', 'sitechats');
} else {
$sitechats = Config::get('irc','sitechats');
}
2012-04-02 03:11:11 +02:00
if($sitechats)
$chats = explode(',',$sitechats);
else
2018-01-15 14:15:33 +01:00
$chats = ['friendica','chat','chatback','hottub','ircbar','dateroom','debian'];
2018-01-22 20:03:11 +01:00
$a->page['aside'] .= '<div class="widget"><h3>' . L10n::t('Popular Channels') . '</h3><ul>';
foreach($chats as $chat) {
$a->page['aside'] .= '<li><a href="' . $a->getBaseURL() . '/irc?channels=' . $chat . '" >' . '#' . $chat . '</a></li>';
}
$a->page['aside'] .= '</ul></div>';
/* setting the channel(s) to auto connect */
if (local_user()) {
$autochans = PConfig::get(local_user(), 'irc', 'autochans');
if (!$autochans)
$autochans = Config::get('irc','autochans');
} else {
$autochans = Config::get('irc','autochans');
}
if($autochans)
$channels = $autochans;
else
$channels = defaults($_GET, 'channels', 'friendica');
/* add the chatroom frame and some html */
2012-03-03 00:21:37 +01:00
$o .= <<< EOT
<h2>IRC chat</h2>
<p><a href="http://tldp.org/HOWTO/IRC/beginners.html" target="_blank">A beginner's guide to using IRC. [en]</a></p>
<iframe src="//webchat.freenode.net?channels=$channels" style="width:100%; max-width:900px; height: 600px;"></iframe>
2012-03-03 00:21:37 +01:00
EOT;
return $o;
2018-01-15 14:15:33 +01:00
2012-03-03 00:12:34 +01:00
}
function irc_addon_admin_post (&$a) {
if(! is_site_admin())
return;
2012-03-03 00:12:34 +01:00
if($_POST['irc-submit']) {
Config::set('irc','autochans',trim($_POST['autochans']));
Config::set('irc','sitechats',trim($_POST['sitechats']));
/* stupid pop-up thing */
2018-01-22 20:03:11 +01:00
info(L10n::t('IRC settings saved.') . EOL);
}
}
function irc_addon_admin (&$a, &$o) {
$sitechats = Config::get('irc','sitechats'); /* popular channels */
$autochans = Config::get('irc','autochans'); /* auto connect chans */
$t = Renderer::getMarkupTemplate( "admin.tpl", "addon/irc/" );
$o = Renderer::replaceMacros($t, [
2018-01-22 20:03:11 +01:00
'$submit' => L10n::t('Save Settings'),
'$autochans' => [ 'autochans', L10n::t('Channel(s) to auto connect (comma separated)'), $autochans, L10n::t('List of channels that shall automatically connected to when the app is launched.')],
'$sitechats' => [ 'sitechats', L10n::t('Popular Channels (comma separated)'), $sitechats, L10n::t('List of popular channels, will be displayed at the side and hotlinked for easy joining.') ]
2018-01-15 14:15:33 +01:00
]);
}