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>
11 use Friendica\Core\Hook;
12 use Friendica\Core\Logger;
13 use Friendica\Core\Renderer;
16 function planets_install()
19 * Our demo addon will attach in three places.
20 * The first is just prior to storing a local post.
22 Hook::register('post_local', 'addon/planets/planets.php', 'planets_post_hook');
25 * Then we'll attach into the addon settings page, and also the
26 * settings post hook so that we can create and update
29 Hook::register('addon_settings', 'addon/planets/planets.php', 'planets_settings');
30 Hook::register('addon_settings_post', 'addon/planets/planets.php', 'planets_settings_post');
32 Logger::notice("installed planets");
36 * An item was posted on the local system.
37 * We are going to look for specific items:
38 * - A status post by a profile owner
39 * - The profile owner must have allowed our addon
41 function planets_post_hook(&$item)
43 Logger::notice('planets invoked');
45 if (!DI::userSession()->getLocalUserId()) {
46 /* non-zero if this is a logged in user of this system */
50 if (DI::userSession()->getLocalUserId() != $item['uid']) {
51 /* Does this person own the post? */
55 if ($item['parent']) {
56 /* If the item has a parent, this is a comment or something else, not a status post. */
60 /* Retrieve our personal config setting */
61 $active = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'planets', 'enable');
69 * OK, we're allowed to do our stuff.
70 * Here's what we are going to do:
71 * load the list of timezone names, and use that to generate a list of world planets.
72 * Then we'll pick one of those at random and put it in the "location" field for the post.
76 $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'];
78 $planet = array_rand($planets,1);
79 $item['location'] = $planets[$planet];
89 * Callback from the settings post function.
90 * $post contains the $_POST array.
91 * We will make sure we've got a valid user account
92 * and if so set our configuration setting for this person.
96 function planets_settings_post($post)
98 if (!DI::userSession()->getLocalUserId()) {
101 if ($_POST['planets-submit']) {
102 DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'planets', 'enable' ,intval($_POST['planets']));
109 * Called from the Addon Setting form.
110 * Add our own settings info to the page.
116 function planets_settings(array &$data)
118 if(!DI::userSession()->getLocalUserId()) {
122 $enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(),'planets','enable');
124 $t = Renderer::getMarkupTemplate('settings.tpl', 'addon/planets/');
125 $html = Renderer::replaceMacros($t, [
126 '$enabled' => ['planets', DI::l10n()->t('Enable Planets Addon'), $enabled],
130 'addon' => 'planets',
131 'title' => DI::l10n()->t('Planets Settings'),