]> git.mxchange.org Git - friendica-addons.git/blob - krynn/krynn.php
66cdf57357a338e1c2aa205d1120efa18b702168
[friendica-addons.git] / krynn / krynn.php
1 <?php
2 /**
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
5  * Version: 1.0
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>
9  *
10  *"My body was my sacrifice... for my magic. This damage is permanent." - Raistlin Majere
11  */
12 use Friendica\Core\Hook;
13 use Friendica\Core\Logger;
14 use Friendica\DI;
15
16 function krynn_install() {
17
18         /**
19          *
20          * Our demo addon will attach in three places.
21          * The first is just prior to storing a local post.
22          *
23          */
24
25         Hook::register('post_local', 'addon/krynn/krynn.php', 'krynn_post_hook');
26
27         /**
28          *
29          * Then we'll attach into the addon settings page, and also the
30          * settings post hook so that we can create and update
31          * user preferences.
32          *
33          */
34
35         Hook::register('addon_settings', 'addon/krynn/krynn.php', 'krynn_settings');
36         Hook::register('addon_settings_post', 'addon/krynn/krynn.php', 'krynn_settings_post');
37
38         Logger::notice("installed krynn");
39 }
40
41 function krynn_post_hook($a, &$item) {
42
43         /**
44          *
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
49          *
50          */
51
52         if(! local_user())   /* non-zero if this is a logged in user of this system */
53                 return;
54
55         if(local_user() != $item['uid'])    /* Does this person own the post? */
56                 return;
57
58         if($item['parent'])   /* If the item has a parent, this is a comment or something else, not a status post. */
59                 return;
60
61         /* Retrieve our personal config setting */
62
63         $active = DI::pConfig()->get(local_user(), 'krynn', 'enable');
64
65         if(! $active)
66                 return;
67
68         /**
69          *
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.
74          *
75          */
76
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'];
78
79         $planet = array_rand($krynn,1);
80         $item['location'] = $krynn[$planet];
81
82         return;
83 }
84
85
86
87
88 /**
89  *
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.
94  *
95  */
96
97 function krynn_settings_post($a,$post) {
98         if(! local_user())
99                 return;
100         if($_POST['krynn-submit'])
101                 DI::pConfig()->set(local_user(),'krynn','enable',intval($_POST['krynn']));
102 }
103
104
105 /**
106  *
107  * Called from the addon Setting form.
108  * Add our own settings info to the page.
109  *
110  */
111
112
113
114 function krynn_settings(&$a,&$s) {
115
116         if(! local_user())
117                 return;
118
119         /* Add our stylesheet to the page so we can make our settings look nice */
120
121         DI::page()['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . DI::baseUrl()->get() . '/addon/krynn/krynn.css' . '" media="all" />' . "\r\n";
122
123         /* Get the current state of our config variable */
124
125         $enabled = DI::pConfig()->get(local_user(),'krynn','enable');
126
127         $checked = (($enabled) ? ' checked="checked" ' : '');
128
129         /* Add some HTML to the existing form */
130
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>';
133         $s .= '</span>';
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>';
137         $s .= '</span>';
138
139
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 */
147
148         $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="krynn-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div></div>';
149
150 }
151
152