3 * Name: Dragonlance Krynn locales
4 * Description: Set a random locale from the Dragonlance Realm of Krynn when posting. Based on the planets friendica addon by Mike Macgirvin and Tony Baldwin
6 * Planets Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
7 * Planets Author: Tony Baldwin <https://free-haven.org/profile/tony>
8 * Author: Dylan Thiedeke <https://theronin.net/profile/swathe>
10 *"My body was my sacrifice... for my magic. This damage is permanent." - Raistlin Majere
12 use Friendica\Core\Hook;
13 use Friendica\Core\Logger;
16 function krynn_install() {
20 * Our demo addon will attach in three places.
21 * The first is just prior to storing a local post.
25 Hook::register('post_local', 'addon/krynn/krynn.php', 'krynn_post_hook');
29 * Then we'll attach into the addon settings page, and also the
30 * settings post hook so that we can create and update
35 Hook::register('addon_settings', 'addon/krynn/krynn.php', 'krynn_settings');
36 Hook::register('addon_settings_post', 'addon/krynn/krynn.php', 'krynn_settings_post');
38 Logger::log("installed krynn");
41 function krynn_post_hook($a, &$item) {
45 * An item was posted on the local system.
46 * We are going to look for specific items:
47 * - A status post by a profile owner
48 * - The profile owner must have allowed our addon
52 if(! local_user()) /* non-zero if this is a logged in user of this system */
55 if(local_user() != $item['uid']) /* Does this person own the post? */
58 if($item['parent']) /* If the item has a parent, this is a comment or something else, not a status post. */
61 /* Retrieve our personal config setting */
63 $active = DI::pConfig()->get(local_user(), 'krynn', 'enable');
70 * OK, we're allowed to do our stuff.
71 * Here's what we are going to do:
72 * load the list of timezone names, and use that to generate a list of krynn locales.
73 * Then we'll pick one of those at random and put it in the "location" field for the post.
77 $krynn = ['Ansalon','Abanasinia','Solace','Haven','Gateway','Qualinost','Ankatavaka','Pax Tharkas','Ergoth','Newsea','Straights of Schallsea','Plains of Dust','Tarsis','Barren Hills','Que Shu','Citadel of Light','Solinari','Hedge Maze','Tower of High Sorcery','Inn of the Last Home','Last Heroes Tomb','Academy of Sorcery','Gods Row','Temple of Majere','Temple of Kiri-Jolith','Temple of Mishakal','Temple of Zeboim','The Trough','Sad Town','Xak Tsaroth','Zhaman','Skullcap','Saifhum','Karthay','Mithas','Kothas','Silver Dragon Mountain','Silvanesti'];
79 $planet = array_rand($krynn,1);
80 $item['location'] = $krynn[$planet];
90 * Callback from the settings post function.
91 * $post contains the $_POST array.
92 * We will make sure we've got a valid user account
93 * and if so set our configuration setting for this person.
97 function krynn_settings_post($a,$post) {
100 if($_POST['krynn-submit'])
101 DI::pConfig()->set(local_user(),'krynn','enable',intval($_POST['krynn']));
107 * Called from the addon Setting form.
108 * Add our own settings info to the page.
114 function krynn_settings(&$a,&$s) {
119 /* Add our stylesheet to the page so we can make our settings look nice */
121 DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/addon/krynn/krynn.css' . '" media="all" />' . "\r\n";
123 /* Get the current state of our config variable */
125 $enabled = DI::pConfig()->get(local_user(),'krynn','enable');
127 $checked = (($enabled) ? ' checked="checked" ' : '');
129 /* Add some HTML to the existing form */
131 $s .= '<span id="settings_krynn_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_krynn_expanded\'); openClose(\'settings_krynn_inflated\');">';
132 $s .= '<h3>' . DI::l10n()->t('Krynn') . '</h3>';
134 $s .= '<div id="settings_krynn_expanded" class="settings-block" style="display: none;">';
135 $s .= '<span class="fakelink" onclick="openClose(\'settings_krynn_expanded\'); openClose(\'settings_krynn_inflated\');">';
136 $s .= '<h3>' . DI::l10n()->t('Krynn') . '</h3>';
140 $s .= '<div class="settings-block">';
141 $s .= '<h3>' . DI::l10n()->t('Krynn Settings') . '</h3>';
142 $s .= '<div id="krynn-enable-wrapper">';
143 $s .= '<label id="krynn-enable-label" for="krynn-checkbox">' . DI::l10n()->t('Enable Krynn Addon') . '</label>';
144 $s .= '<input id="krynn-checkbox" type="checkbox" name="krynn" value="1" ' . $checked . '/>';
145 $s .= '</div><div class="clear"></div></div>';
146 /* provide a submit button */
148 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="krynn-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div></div>';