You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
2.8 KiB
PHP
118 lines
2.8 KiB
PHP
<?php
|
|
class NSFW extends Plugin {
|
|
private $host;
|
|
|
|
function about() {
|
|
return array(null,
|
|
"Hide article content based on tags",
|
|
"fox",
|
|
false);
|
|
}
|
|
|
|
function init($host) {
|
|
$this->host = $host;
|
|
|
|
$host->add_hook(PluginHost::HOOK_RENDER_ARTICLE, $this);
|
|
$host->add_hook(PluginHost::HOOK_RENDER_ARTICLE_CDM, $this);
|
|
$host->add_hook(PluginHost::HOOK_RENDER_ARTICLE_API, $this);
|
|
$host->add_hook(PluginHost::HOOK_ARTICLE_IMAGE, $this);
|
|
$host->add_hook(PluginHost::HOOK_PREFS_TAB, $this);
|
|
|
|
}
|
|
|
|
function hook_article_image($enclosures, $content, $site_url, $article) {
|
|
$tags = explode(",", $this->host->get($this, "tags"));
|
|
$article_tags = $article["tags"];
|
|
|
|
if (count(array_intersect($tags, $article_tags)) > 0) {
|
|
return [Config::get_self_url() . "/plugins/nsfw/nsfw.png", "", "nsfw"];
|
|
} else {
|
|
return ["", "", $content];
|
|
}
|
|
}
|
|
|
|
private function rewrite_contents($article) {
|
|
$tags = explode(",", $this->host->get($this, "tags"));
|
|
$article_tags = $article["tags"];
|
|
|
|
if (count(array_intersect($tags, $article_tags)) > 0) {
|
|
$article["content"] = "<details class='nsfw'><summary>" . __("Not safe for work (click to toggle)") . "</summary>" . $article["content"] . "</details>";
|
|
}
|
|
|
|
return $article;
|
|
}
|
|
|
|
function get_css() {
|
|
return
|
|
'details.nsfw {
|
|
cursor : pointer;
|
|
user-select : none;
|
|
}';
|
|
}
|
|
|
|
function hook_render_article_api($row) {
|
|
$article = isset($row['headline']) ? $row['headline'] : $row['article'];
|
|
return $this->rewrite_contents($article);
|
|
}
|
|
|
|
function hook_render_article($article) {
|
|
return $this->rewrite_contents($article);
|
|
}
|
|
|
|
function hook_render_article_cdm($article) {
|
|
return $this->rewrite_contents($article);
|
|
}
|
|
|
|
function hook_prefs_tab($args) {
|
|
if ($args != "prefPrefs") return;
|
|
|
|
$tags = $this->host->get($this, "tags");
|
|
|
|
?>
|
|
<div dojoType="dijit.layout.AccordionPane"
|
|
title="<i class='material-icons'>extension</i> <?= __("NSFW Plugin") ?>">
|
|
<form dojoType="dijit.form.Form">
|
|
|
|
<?= \Controls\pluginhandler_tags($this, "save") ?>
|
|
|
|
<script type="dojo/method" event="onSubmit" args="evt">
|
|
evt.preventDefault();
|
|
if (this.validate()) {
|
|
Notify.progress('Saving data...', true);
|
|
xhr.post("backend.php", this.getValues(), (reply) => {
|
|
Notify.info(reply);
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<header><?= __("Tags to consider NSFW (comma-separated):") ?></header>
|
|
|
|
<fieldset>
|
|
<textarea dojoType='dijit.form.SimpleTextarea' rows='4'
|
|
style='width: 500px; font-size : 12px;'
|
|
name='tags'><?= $tags ?></textarea>
|
|
</fieldset>
|
|
|
|
<hr/>
|
|
|
|
<?= \Controls\submit_tag(__("Save")) ?>
|
|
</form>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
function save() {
|
|
$tags = implode(", ",
|
|
FeedItem_Common::normalize_categories(explode(",", $_POST["tags"] ?? "")));
|
|
|
|
$this->host->set($this, "tags", $tags);
|
|
|
|
echo __("Configuration saved.");
|
|
}
|
|
|
|
function api_version() {
|
|
return 2;
|
|
}
|
|
}
|
|
|