3 * Name: Random Planet, Empirial Version
4 * Description: Sample Friendica addon. Set a random planet from the Emprire when posting.
6 * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
7 * Author: Tony Baldwin <https://free-haven.org/profile/tony>
9 use Friendica\Core\Hook;
10 use Friendica\Core\Logger;
13 function planets_install() {
17 * Our demo addon will attach in three places.
18 * The first is just prior to storing a local post.
22 Hook::register('post_local', 'addon/planets/planets.php', 'planets_post_hook');
26 * Then we'll attach into the addon settings page, and also the
27 * settings post hook so that we can create and update
32 Hook::register('addon_settings', 'addon/planets/planets.php', 'planets_settings');
33 Hook::register('addon_settings_post', 'addon/planets/planets.php', 'planets_settings_post');
35 Logger::log("installed planets");
39 function planets_uninstall() {
43 * uninstall unregisters any hooks created with register_hook
44 * during install. It may also delete configuration settings
45 * and any other cleanup.
49 Hook::unregister('post_local', 'addon/planets/planets.php', 'planets_post_hook');
50 Hook::unregister('addon_settings', 'addon/planets/planets.php', 'planets_settings');
51 Hook::unregister('addon_settings_post', 'addon/planets/planets.php', 'planets_settings_post');
54 Logger::log("removed planets");
59 function planets_post_hook($a, &$item) {
63 * An item was posted on the local system.
64 * We are going to look for specific items:
65 * - A status post by a profile owner
66 * - The profile owner must have allowed our addon
70 Logger::log('planets invoked');
72 if(! local_user()) /* non-zero if this is a logged in user of this system */
75 if(local_user() != $item['uid']) /* Does this person own the post? */
78 if($item['parent']) /* If the item has a parent, this is a comment or something else, not a status post. */
81 /* Retrieve our personal config setting */
83 $active = DI::pConfig()->get(local_user(), 'planets', 'enable');
90 * OK, we're allowed to do our stuff.
91 * Here's what we are going to do:
92 * load the list of timezone names, and use that to generate a list of world planets.
93 * Then we'll pick one of those at random and put it in the "location" field for the post.
97 $planets = ['Alderaan','Tatooine','Dagobah','Polis Massa','Coruscant','Hoth','Endor','Kamino','Rattatak','Mustafar','Iego','Geonosis','Felucia','Dantooine','Ansion','Artaru','Bespin','Boz Pity','Cato Neimoidia','Christophsis','Kashyyyk','Kessel','Malastare','Mygeeto','Nar Shaddaa','Ord Mantell','Saleucami','Subterrel','Death Star','Teth','Tund','Utapau','Yavin'];
99 $planet = array_rand($planets,1);
100 $item['location'] = $planets[$planet];
110 * Callback from the settings post function.
111 * $post contains the $_POST array.
112 * We will make sure we've got a valid user account
113 * and if so set our configuration setting for this person.
117 function planets_settings_post($a,$post) {
120 if($_POST['planets-submit'])
121 DI::pConfig()->set(local_user(),'planets','enable',intval($_POST['planets']));
127 * Called from the Addon Setting form.
128 * Add our own settings info to the page.
134 function planets_settings(&$a,&$s) {
139 /* Add our stylesheet to the page so we can make our settings look nice */
141 DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/addon/planets/planets.css' . '" media="all" />' . "\r\n";
143 /* Get the current state of our config variable */
145 $enabled = DI::pConfig()->get(local_user(),'planets','enable');
147 $checked = (($enabled) ? ' checked="checked" ' : '');
149 /* Add some HTML to the existing form */
151 $s .= '<span id="settings_planets_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_planets_expanded\'); openClose(\'settings_planets_inflated\');">';
152 $s .= '<h3>' . DI::l10n()->t('Planets') . '</h3>';
154 $s .= '<div id="settings_planets_expanded" class="settings-block" style="display: none;">';
155 $s .= '<span class="fakelink" onclick="openClose(\'settings_planets_expanded\'); openClose(\'settings_planets_inflated\');">';
156 $s .= '<h3>' . DI::l10n()->t('Planets') . '</h3>';
159 $s .= '<div class="settings-block">';
160 $s .= '<h3>' . DI::l10n()->t('Planets Settings') . '</h3>';
161 $s .= '<div id="planets-enable-wrapper">';
162 $s .= '<label id="planets-enable-label" for="planets-checkbox">' . DI::l10n()->t('Enable Planets Addon') . '</label>';
163 $s .= '<input id="planets-checkbox" type="checkbox" name="planets" value="1" ' . $checked . '/>';
164 $s .= '</div><div class="clear"></div></div>';
166 /* provide a submit button */
168 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="planets-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div></div>';