View source
<?php
namespace Drupal\n1ed\Plugin\CKEditorPlugin;
use Drupal\ckeditor\CKEditorPluginBase;
use Drupal\ckeditor\CKEditorPluginConfigurableInterface;
use Drupal\ckeditor\CKEditorPluginContextualInterface;
use Drupal\Core\Access\CsrfRequestHeaderAccessCheck;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
use Drupal\editor\Entity\Editor;
class N1ED extends CKEditorPluginBase implements CKEditorPluginConfigurableInterface, CKEditorPluginContextualInterface {
public function getButtons() {
$buttons = [];
$buttonsManual = json_decode(file_get_contents(__DIR__ . '/buttonsManual.json'), TRUE);
for ($i = 0; $i < count($buttonsManual); $i++) {
$button = $buttonsManual[$i];
$buttons[$button['name']] = [
'image' => 'https://n1ed.com/cdn/buttons/' . $button['name'] . '.png',
'label' => isset($button['hint']) ? $button['hint'] : null,
];
}
$buttonsToolbar = json_decode(file_get_contents(__DIR__ . '/buttonsToolbar.json'), TRUE);
for ($line = 0; $line < count($buttonsToolbar); $line++) {
for ($i = 0; $i < count($buttonsToolbar[$line]); $i++) {
$button = $buttonsToolbar[$line][$i];
if (isset($button['name'])) {
$buttons[$button['name']] = [
'image' => 'https://n1ed.com/cdn/buttons/' . $button['name'] . '.png',
'label' => isset($button['hint']) ? $button['hint'] : null,
];
}
}
}
return $buttons;
}
public function getFile() {
$settings = \Drupal::config('n1ed.settings');
$apiKey = $settings
->get('apikey') ?: 'N1D8DFLT';
$version = $settings
->get('version') ?: '';
if ($version === '') {
$version = 'latest';
}
$urlCache = $settings
->get('urlCache') ?: '';
if ($settings
->get('selfHosted')) {
return selfHostedPath . 'N1EDEco/plugin.js';
}
else {
if ($urlCache === '') {
return '//' . (isset($_COOKIE["N1ED_PREFIX"]) ? $_COOKIE["N1ED_PREFIX"] . "." : "") . 'cloud.n1ed.com/cdn/' . $apiKey . '/' . $version . '/ckeditor/plugins/N1EDEco/plugin.js';
}
else {
if (strpos($urlCache, "http:") === 0) {
$urlCache = substr($urlCache, 5);
}
else {
if (strpos($urlCache, "https:") === 0) {
$urlCache = substr($urlCache, 6);
}
}
return $urlCache . $apiKey . '/' . $version . '/ckeditor/plugins/N1EDEco/plugin.js';
}
}
}
public function getDependencies(Editor $editor) {
return [];
}
public function getLibraries(Editor $editor) {
return [];
}
public function isInternal() {
return FALSE;
}
public function isEnabled(Editor $editor) {
return TRUE;
}
protected function getConfigParam($settings, $name, $default, $type) {
if (isset($settings[$name]) && is_string($settings[$name]) && strlen($settings[$name]) > 0) {
$value = $settings[$name];
}
else {
$value = $default;
}
if (isset($type) && $type == 'number') {
$value = intval($value);
}
else {
if (isset($type) && $type == 'boolean') {
if ($value === 'true' || $value === 1 || $value === TRUE) {
$value = TRUE;
}
else {
if ($value === 'false' || $value === 0 || $value === FALSE) {
$value = FALSE;
}
}
}
else {
if (isset($type) && $type == 'json') {
if ($value != '') {
$value = json_decode($value);
}
}
}
}
return $value;
}
public function getConfig(Editor $editor) {
$settings = [];
if (isset($editor
->getSettings()['plugins']['N1EDEco'])) {
$settings = $editor
->getSettings()['plugins']['N1EDEco'];
}
$settings["integration"] = "drupal8";
if (\Drupal::config('n1ed.settings')
->get('selfHosted')) {
$settings["urlSelfHostedHandler"] = "/admin/config/n1ed/selfHostedHandler";
$settings["urlSelfHostedHandler__CSRF"] = "drupal8";
$settings["apiKey"] = \Drupal::config('n1ed.settings')
->get('apikey');
}
$settings["urlSetApiKeyAndToken"] = Url::fromRoute('n1ed.setApiKey')
->toString();
$settings["urlSetApiKeyAndToken__CSRF"] = "drupal8";
$settings["Flmngr"]["urlFileManager"] = Url::fromRoute('n1ed.flmngr')
->toString();
$settings["Flmngr"]["urlFileManager__CSRF"] = "drupal8";
$settings["Flmngr"]["urlFiles"] = parse_url(file_create_url("public://flmngr"))['path'];
$settings["Flmngr"]["dirUploads"] = '/';
$urlCdn = \Drupal::config('n1ed.settings')
->get('urlCache') ?: '';
if ($urlCdn !== '') {
$settings["urlCdn"] = $urlCdn;
}
$version = \Drupal::config('n1ed.settings')
->get('version') ?: '';
if ($version !== '') {
$settings["version"] = $version;
}
if (\Drupal::currentUser()
->hasPermission("administer n1ed configuration")) {
$settings["token"] = \Drupal::config('n1ed.settings')
->get('token') ?: NULL;
}
return $settings;
}
protected function addBooleanToForm(&$form, $settings, $param, $default) {
$form[$param] = [
'#type' => 'textfield',
'#title' => $param,
'#title_display' => 'invisible',
'#default_value' => $this
->getConfigParam($settings, $param, $default, 'boolean') ? "true" : "false",
'#attributes' => [
'style' => 'display: none!important',
'data-n1ed-eco-param-name' => $param,
'data-n1ed-eco-param-type' => 'boolean',
'data-n1ed-eco-param-default' => $default ? "true" : "false",
],
];
}
public function settingsForm(array $form, FormStateInterface $form_state, Editor $editor) {
$config = $this
->getConfig($editor);
$form['info'] = [
'#type' => 'html_tag',
'#tag' => 'div',
'#attributes' => [
'data-n1ed-eco-plugin' => 'N1EDEco',
'style' => 'display: inline-block;margin-top: 13px;margin-left: 10px;',
],
'#value' => '<a href="#n1ed-conf">' . t('Configure add-on') . '</a>',
];
$form['#attached']['library'][] = 'n1ed/n1ed';
$form['#attached']['drupalSettings']['n1edApiKey'] = \Drupal::config('n1ed.settings')
->get('apikey') ?: 'N1D8DFLT';
$form['#attached']['drupalSettings']['useFlmngrOnFileFields'] = \Drupal::config('n1ed.settings')
->get('useFlmngrOnFileFields') ? 1 : 0;
$form['#attached']['drupalSettings']['selfHostedN1ED'] = \Drupal::config('n1ed.settings')
->get('selfHosted') ? 1 : 0;
$form['#attached']['drupalSettings']['n1edToken'] = \Drupal::config('n1ed.settings')
->get('token') ?: NULL;
$this
->addBooleanToForm($form, $config, "enableN1EDEcoSystem", TRUE);
return $form;
}
}