]> git.mxchange.org Git - friendica-addons.git/blobdiff - irc/irc.php
Addon class
[friendica-addons.git] / irc / irc.php
index 065e48080d81a4726ead6048b19dcab7327e71ae..e2fd50ba263b22d674b80b6bbc95b19636c10cd6 100644 (file)
@@ -1,33 +1,73 @@
 <?php
 /**
 * Name: IRC Chat Plugin
-* Description: add an Internet Relay Chat chatroom
-* Version: 1.0
+* Description: add an Internet Relay Chat chatroom on freenode
+* Version: 1.1
 * Author: tony baldwin <https://free-haven.org/profile/tony>
+* Author: Tobias Diekershoff <https://f.diekershoff.de/u/tobias>
 */
-
-/* enable in admin->plugins
- * you will then have "irc chatroom" listed at yoursite/apps
- * and the app will run at yoursite/irc
- * documentation at http://tonybaldwin.me/hax/doku.php?id=friendica:irc
- */
+use Friendica\Core\Addon;
+use Friendica\Core\Config;
+use Friendica\Core\PConfig;
 
 function irc_install() {
-register_hook('app_menu', 'addon/irc/irc.php', 'irc_app_menu');
+       Addon::registerHook('app_menu', 'addon/irc/irc.php', 'irc_app_menu');
+       Addon::registerHook('plugin_settings', 'addon/irc/irc.php', 'irc_addon_settings');
+       Addon::registerHook('plugin_settings_post', 'addon/irc/irc.php', 'irc_addon_settings_post');
 }
 
 function irc_uninstall() {
-unregister_hook('app_menu', 'addon/irc/irc.php', 'irc_app_menu');
+       Addon::unregisterHook('app_menu', 'addon/irc/irc.php', 'irc_app_menu');
+       Addon::unregisterHook('plugin_settings', 'addon/irc/irc.php', 'irc_addon_settings');
+
+}
+
+
+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->get_baseurl() . '/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 = get_markup_template( "settings.tpl", "addon/irc/" );
+       $s .= replace_macros($t, [
+               '$header' => t('IRC Settings'),
+               '$info' => 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' => t('Save Settings'),
+               '$autochans' => [ 'autochans', t('Channel(s) to auto connect (comma separated)'), $autochans, t('List of channels that shall automatically connected to when the app is launched.')],
+               '$sitechats' => [ 'sitechats', t('Popular Channels (comma separated)'), $sitechats, t('List of popular channels, will be displayed at the side and hotlinked for easy joining.') ]
+       ]);
+
+
+       return;
+
+}
 
+function irc_addon_settings_post(&$a,&$b) {
+       if(! local_user())
+               return;
+
+       if($_POST['irc-submit']) {
+               PConfig::set( local_user(), 'irc','autochans',trim($_POST['autochans']));
+               PConfig::set( local_user(), 'irc','sitechats',trim($_POST['sitechats']));
+               /* upid pop-up thing */
+               info( t('IRC settings saved.') . EOL);
+       }
 }
 
 function irc_app_menu($a,&$b) {
-$b['app_menu'][] = '<div class="app-title"><a href="irc">' . t('IRC Chatroom') . '</a></div>';
+       $b['app_menu'][] = '<div class="app-title"><a href="irc">' . t('IRC Chatroom') . '</a></div>';
 }
 
 
 function irc_module() {
-return;
+       return;
 }
 
 
@@ -36,11 +76,18 @@ function irc_content(&$a) {
        $baseurl = $a->get_baseurl() . '/addon/irc';
        $o = '';
 
-       $sitechats = get_config('irc','channels');
+       /* 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');
+       }
        if($sitechats)
                $chats = explode(',',$sitechats);
        else
-               $chats = array('friendica','chat','chatback','hottub','ircbar','dateroom','teentalk');
+               $chats = ['friendica','chat','chatback','hottub','ircbar','dateroom','debian'];
 
 
        $a->page['aside'] .= '<div class="widget"><h3>' . t('Popular Channels') . '</h3><ul>';
@@ -49,24 +96,48 @@ function irc_content(&$a) {
        }
        $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 = ((x($_GET,'channels')) ? $_GET['channels'] : 'friendica');
 
-
-
-
-$channels = ((x($_GET,'channels')) ? $_GET['channels'] : 'friendica');
-
-/* add the chatroom frame and some html
- * by altering the "channels=friendica" part of the URL, you can add/remove channels.  
- * At free-haven.org, I have "?channels=friendica,free-haven", for instance, to open #friendica and #free-haven
- */
+/* add the chatroom frame and some html */
   $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="http://webchat.freenode.net?channels=$channels" width="600" height="600"></iframe>
+<iframe src="//webchat.freenode.net?channels=$channels" style="width:100%; max-width:900px; height: 600px;"></iframe>
 EOT;
 
 return $o;
-    
+
 }
 
+function irc_plugin_admin_post (&$a) {
+       if(! is_site_admin())
+               return;
 
+       if($_POST['irc-submit']) {
+               Config::set('irc','autochans',trim($_POST['autochans']));
+               Config::set('irc','sitechats',trim($_POST['sitechats']));
+               /* stupid pop-up thing */
+               info( t('IRC settings saved.') . EOL);
+       }
+}
+function irc_plugin_admin (&$a, &$o) {
+       $sitechats = Config::get('irc','sitechats'); /* popular channels */
+       $autochans = Config::get('irc','autochans');  /* auto connect chans */
+       $t = get_markup_template( "admin.tpl", "addon/irc/" );
+       $o = replace_macros($t, [
+               '$submit' => t('Save Settings'),
+               '$autochans' => [ 'autochans', t('Channel(s) to auto connect (comma separated)'), $autochans, t('List of channels that shall automatically connected to when the app is launched.')],
+               '$sitechats' => [ 'sitechats', t('Popular Channels (comma separated)'), $sitechats, t('List of popular channels, will be displayed at the side and hotlinked for easy joining.') ]
+       ]);
+}