2018-07-14 06:08:36 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Name: Mastodon Custom Emojis
|
|
|
|
* Description: Replace emojis shortcodes in Mastodon posts with their originating server custom emojis images.
|
|
|
|
* Version: 1.0
|
|
|
|
* Author: Hypolite Petovan
|
2018-07-17 01:12:52 -04:00
|
|
|
* Author: Roland Haeder
|
2018-11-08 16:40:52 -05:00
|
|
|
* Status: Unsupported
|
2018-07-14 06:08:36 -04:00
|
|
|
*/
|
|
|
|
|
2018-07-17 01:12:52 -04:00
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\Content\Smilies;
|
2020-01-19 10:29:54 -05:00
|
|
|
use Friendica\Core\Cache\Duration;
|
2018-12-26 02:28:16 -05:00
|
|
|
use Friendica\Core\Hook;
|
2018-07-17 01:12:52 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2019-12-30 14:02:08 -05:00
|
|
|
use Friendica\DI;
|
2018-07-30 21:20:29 -04:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2018-07-14 06:08:36 -04:00
|
|
|
|
|
|
|
function mastodoncustomemojis_install()
|
|
|
|
{
|
2018-12-26 02:28:16 -05:00
|
|
|
Hook::register('put_item_in_cache', __FILE__, 'mastodoncustomemojis_put_item_in_cache');
|
|
|
|
Hook::register('network_mod_init', __FILE__, 'mastodoncustomemojis_css_hook');
|
|
|
|
Hook::register('display_mod_init', __FILE__, 'mastodoncustomemojis_css_hook');
|
|
|
|
Hook::register('search_mod_init', __FILE__, 'mastodoncustomemojis_css_hook');
|
|
|
|
Hook::register('community_mod_init', __FILE__, 'mastodoncustomemojis_css_hook');
|
|
|
|
Hook::register('contacts_mod_init', __FILE__, 'mastodoncustomemojis_css_hook');
|
2018-07-14 06:08:36 -04:00
|
|
|
}
|
|
|
|
|
2018-07-17 01:12:52 -04:00
|
|
|
function mastodoncustomemojis_css_hook(App $a)
|
2018-07-14 06:08:36 -04:00
|
|
|
{
|
2019-12-30 14:02:08 -05:00
|
|
|
DI::page()['htmlhead'] .= <<<HTML
|
2018-07-14 06:08:36 -04:00
|
|
|
<!-- Style added by mastodoncustomemojis -->
|
|
|
|
<style type="text/css">
|
|
|
|
.emoji.mastodon {
|
|
|
|
height: 1.2em;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
HTML;
|
|
|
|
}
|
|
|
|
|
2018-07-17 01:12:52 -04:00
|
|
|
function mastodoncustomemojis_put_item_in_cache(App $a, array &$hook_data)
|
2018-07-14 06:08:36 -04:00
|
|
|
{
|
2018-10-02 11:28:31 -04:00
|
|
|
// Mastodon uses OStatus and ActivityPub, skipping other network protocols
|
|
|
|
if (empty($hook_data['item']['author-link']) || !in_array($hook_data['item']['network'], [Protocol::OSTATUS, Protocol::ACTIVITYPUB])) {
|
2018-07-14 06:08:36 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$emojis = mastodoncustomemojis_get_custom_emojis_for_author($hook_data['item']['author-link']);
|
|
|
|
|
2018-07-17 01:12:52 -04:00
|
|
|
$hook_data["rendered-html"] = Smilies::replaceFromArray($hook_data["rendered-html"], $emojis);
|
2018-07-14 06:08:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function mastodoncustomemojis_get_custom_emojis_for_author($author_link)
|
|
|
|
{
|
|
|
|
$url_parts = parse_url($author_link);
|
|
|
|
|
2018-07-16 19:40:09 -04:00
|
|
|
$api_base_url = $url_parts['scheme'] . '://' . $url_parts['host'] . (isset($url_parts['port']) ? ':' . $url_parts['port'] : '');
|
2018-07-14 06:08:36 -04:00
|
|
|
|
|
|
|
$cache_key = 'mastodoncustomemojis:' . $api_base_url;
|
|
|
|
|
2020-01-19 10:29:54 -05:00
|
|
|
$return = DI::cache()->get($cache_key);
|
2018-07-14 06:08:36 -04:00
|
|
|
|
2020-01-19 15:21:12 -05:00
|
|
|
if (empty($return) || DI::config()->get('system', 'ignore_cache')) {
|
2018-08-22 20:12:19 -04:00
|
|
|
$return = mastodoncustomemojis_fetch_custom_emojis_for_url($api_base_url);
|
2018-07-14 06:08:36 -04:00
|
|
|
|
2020-01-19 10:29:54 -05:00
|
|
|
DI::cache()->set($cache_key, $return, empty($return['texts']) ? Duration::QUARTER_HOUR : Duration::HOUR);
|
2018-08-22 20:12:19 -04:00
|
|
|
}
|
2018-07-14 06:08:36 -04:00
|
|
|
|
2018-08-22 20:12:19 -04:00
|
|
|
return $return;
|
|
|
|
}
|
2018-07-14 06:08:36 -04:00
|
|
|
|
2018-08-22 20:12:19 -04:00
|
|
|
function mastodoncustomemojis_fetch_custom_emojis_for_url($api_base_url)
|
|
|
|
{
|
|
|
|
$return = ['texts' => [], 'icons' => []];
|
2018-07-17 20:34:59 -04:00
|
|
|
|
2018-08-22 20:12:19 -04:00
|
|
|
$api_url = $api_base_url . '/api/v1/custom_emojis';
|
2018-07-14 06:08:36 -04:00
|
|
|
|
2021-08-25 15:54:54 -04:00
|
|
|
$fetchResult = DI::httpClient()->fetchFull($api_url);
|
2018-07-14 06:08:36 -04:00
|
|
|
|
2018-10-11 01:40:57 -04:00
|
|
|
if ($fetchResult->isSuccess()) {
|
|
|
|
$emojis_array = json_decode($fetchResult->getBody(), true);
|
2018-08-22 20:12:19 -04:00
|
|
|
|
|
|
|
if (is_array($emojis_array) && count($emojis_array)) {
|
|
|
|
foreach ($emojis_array as $emoji) {
|
2018-10-12 08:53:43 -04:00
|
|
|
if (!empty($emoji['shortcode']) && !empty($emoji['static_url'])) {
|
|
|
|
$return['texts'][] = ':' . $emoji['shortcode'] . ':';
|
|
|
|
$return['icons'][] = '<img class="emoji mastodon" src="' . ProxyUtils::proxifyUrl($emoji['static_url']) . '" alt=":' . $emoji['shortcode'] . ':" title=":' . $emoji['shortcode'] . ':"/>';
|
|
|
|
}
|
2018-08-22 20:12:19 -04:00
|
|
|
}
|
|
|
|
}
|
2018-07-14 06:08:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|