2015-05-05 03:00:01 +02:00
|
|
|
<?php defined('BLUDIT') or die('Bludit CMS.');
|
2015-03-08 18:02:59 +01:00
|
|
|
|
|
|
|
class Plugin {
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// (string) directory name, just the name
|
|
|
|
// Ex: sitemap
|
2015-03-08 18:02:59 +01:00
|
|
|
public $directoryName;
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// (string) Absoulute database filename and path
|
|
|
|
// Ex: /www/bludit/bl-content/plugins/sitemap/db.php
|
2015-07-14 04:16:28 +02:00
|
|
|
public $filenameDb;
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// (string) Absoulute metadata filename and path
|
|
|
|
// Ex: /www/bludit/bl-plugins/sitemap/metadata.json
|
2016-01-14 05:42:18 +01:00
|
|
|
public $filenameMetadata;
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// (array) Plugin metadata
|
|
|
|
// Ex: array('author'=>'',...., 'notes'=>'')
|
|
|
|
public $metadata;
|
|
|
|
|
|
|
|
// (string) Class name
|
|
|
|
// Ex: pluginSitemap
|
|
|
|
public $className;
|
|
|
|
|
2015-07-14 04:16:28 +02:00
|
|
|
// (array) Database unserialized
|
2015-03-08 18:02:59 +01:00
|
|
|
public $db;
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// (array) Database fields, only for initialize
|
2015-03-08 18:02:59 +01:00
|
|
|
public $dbFields;
|
|
|
|
|
2017-07-07 23:38:01 +02:00
|
|
|
// (boolean) Enable or disable default Save and Cancel button on plugin settings
|
2017-06-19 23:14:38 +02:00
|
|
|
public $formButtons;
|
|
|
|
|
2015-03-08 18:02:59 +01:00
|
|
|
function __construct()
|
|
|
|
{
|
2015-07-14 06:41:32 +02:00
|
|
|
$this->dbFields = array();
|
|
|
|
|
2015-07-14 04:16:28 +02:00
|
|
|
$reflector = new ReflectionClass(get_class($this));
|
2015-07-03 22:44:26 +02:00
|
|
|
|
2015-03-08 18:02:59 +01:00
|
|
|
// Directory name
|
2015-08-01 18:28:47 +02:00
|
|
|
$this->directoryName = basename(dirname($reflector->getFileName()));
|
2015-03-08 18:02:59 +01:00
|
|
|
|
|
|
|
// Class Name
|
|
|
|
$this->className = $reflector->getName();
|
|
|
|
|
2017-06-19 23:14:38 +02:00
|
|
|
$this->formButtons = true;
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// Call the method init() from the children
|
2015-06-11 04:27:04 +02:00
|
|
|
$this->init();
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// Init empty database with default values
|
2015-06-11 04:27:04 +02:00
|
|
|
$this->db = $this->dbFields;
|
2015-03-08 18:02:59 +01:00
|
|
|
|
2015-08-01 18:28:47 +02:00
|
|
|
$this->filenameDb = PATH_PLUGINS_DATABASES.$this->directoryName.DS.'db.php';
|
2015-03-08 18:02:59 +01:00
|
|
|
|
2016-01-14 05:42:18 +01:00
|
|
|
// --- Metadata ---
|
|
|
|
$this->filenameMetadata = PATH_PLUGINS.$this->directoryName().DS.'metadata.json';
|
|
|
|
$metadataString = file_get_contents($this->filenameMetadata);
|
|
|
|
$this->metadata = json_decode($metadataString, true);
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// If the plugin is installed then get the database
|
|
|
|
if($this->installed()) {
|
2015-07-14 04:16:28 +02:00
|
|
|
$Tmp = new dbJSON($this->filenameDb);
|
2015-05-05 03:00:01 +02:00
|
|
|
$this->db = $Tmp->db;
|
2015-03-08 18:02:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 23:14:38 +02:00
|
|
|
// DEPRECATED
|
|
|
|
// 2017-06-19
|
2017-05-27 19:46:46 +02:00
|
|
|
public function setDb($args)
|
|
|
|
{
|
|
|
|
foreach($this->dbFields as $key=>$value) {
|
|
|
|
if( isset($args[$key]) ) {
|
|
|
|
$value = Sanitize::html( $args[$key] );
|
2017-06-05 18:52:13 +02:00
|
|
|
if($value==='false') { $value = false; }
|
|
|
|
elseif($value==='true') { $value = true; }
|
2017-05-27 19:46:46 +02:00
|
|
|
settype($value, gettype($this->dbFields[$key]));
|
|
|
|
$this->db[$key] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function save()
|
|
|
|
{
|
|
|
|
$tmp = new dbJSON($this->filenameDb);
|
|
|
|
$tmp->db = $this->db;
|
2017-12-20 00:25:42 +01:00
|
|
|
return $tmp->save();
|
2017-05-27 19:46:46 +02:00
|
|
|
}
|
|
|
|
|
2015-08-01 18:28:47 +02:00
|
|
|
public function htmlPath()
|
|
|
|
{
|
|
|
|
return HTML_PATH_PLUGINS.$this->directoryName.'/';
|
|
|
|
}
|
|
|
|
|
2015-12-09 02:10:46 +01:00
|
|
|
public function phpPath()
|
|
|
|
{
|
|
|
|
return PATH_PLUGINS.$this->directoryName.DS;
|
|
|
|
}
|
|
|
|
|
2016-01-11 23:51:00 +01:00
|
|
|
public function phpPathDB()
|
|
|
|
{
|
|
|
|
return PATH_PLUGINS_DATABASES.$this->directoryName.DS;
|
|
|
|
}
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// Returns the value of the key from the metadata of the plugin, FALSE if the key doen't exit
|
2016-01-14 05:42:18 +01:00
|
|
|
public function getMetadata($key)
|
2015-06-11 04:27:04 +02:00
|
|
|
{
|
2016-01-14 05:42:18 +01:00
|
|
|
if(isset($this->metadata[$key])) {
|
|
|
|
return $this->metadata[$key];
|
2015-06-12 06:00:04 +02:00
|
|
|
}
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
return false;
|
2015-07-03 22:44:26 +02:00
|
|
|
}
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// Set a key / value on the metadata of the plugin
|
2016-01-14 05:42:18 +01:00
|
|
|
public function setMetadata($key, $value)
|
2015-07-03 22:44:26 +02:00
|
|
|
{
|
2016-01-14 05:42:18 +01:00
|
|
|
$this->metadata[$key] = $value;
|
|
|
|
return true;
|
2015-07-03 22:44:26 +02:00
|
|
|
}
|
|
|
|
|
2017-05-27 19:46:46 +02:00
|
|
|
// Returns the value of the field from the database
|
|
|
|
// (string) $field
|
|
|
|
// (boolean) $html, TRUE returns the value sanitized, FALSE unsanitized
|
|
|
|
public function getValue($field, $html=true)
|
|
|
|
{
|
|
|
|
if( isset($this->db[$field]) ) {
|
|
|
|
if($html) {
|
|
|
|
return $this->db[$field];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Sanitize::htmlDecode($this->db[$field]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// DEPRECATED
|
|
|
|
// 2017-06-16
|
2015-08-01 18:28:47 +02:00
|
|
|
public function getDbField($key, $html=true)
|
2015-07-14 04:16:28 +02:00
|
|
|
{
|
|
|
|
if(isset($this->db[$key])) {
|
2015-08-01 18:28:47 +02:00
|
|
|
|
|
|
|
if($html) {
|
|
|
|
// All fields from DBField are sanitized.
|
|
|
|
return $this->db[$key];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Decode HTML tags, this action unsanitized the variable.
|
|
|
|
return Sanitize::htmlDecode($this->db[$key]);
|
|
|
|
}
|
2015-07-14 04:16:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2015-07-03 22:44:26 +02:00
|
|
|
public function name()
|
|
|
|
{
|
2016-01-14 05:42:18 +01:00
|
|
|
return $this->getMetadata('name');
|
2015-06-12 06:00:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function description()
|
|
|
|
{
|
2016-01-14 05:42:18 +01:00
|
|
|
return $this->getMetadata('description');
|
2015-07-03 22:44:26 +02:00
|
|
|
}
|
2015-06-12 06:00:04 +02:00
|
|
|
|
2015-07-03 22:44:26 +02:00
|
|
|
public function author()
|
|
|
|
{
|
2016-01-14 05:42:18 +01:00
|
|
|
return $this->getMetadata('author');
|
2015-07-03 22:44:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function email()
|
|
|
|
{
|
2016-01-14 05:42:18 +01:00
|
|
|
return $this->getMetadata('email');
|
2015-07-03 22:44:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function website()
|
|
|
|
{
|
2016-01-14 05:42:18 +01:00
|
|
|
return $this->getMetadata('website');
|
2015-06-12 06:00:04 +02:00
|
|
|
}
|
|
|
|
|
2017-07-30 23:15:33 +02:00
|
|
|
public function position()
|
|
|
|
{
|
|
|
|
return $this->getValue('position');
|
|
|
|
}
|
|
|
|
|
2015-07-26 23:57:39 +02:00
|
|
|
public function version()
|
|
|
|
{
|
2016-01-14 05:42:18 +01:00
|
|
|
return $this->getMetadata('version');
|
2015-07-26 23:57:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function releaseDate()
|
|
|
|
{
|
2016-01-14 05:42:18 +01:00
|
|
|
return $this->getMetadata('releaseDate');
|
2015-07-26 23:57:39 +02:00
|
|
|
}
|
|
|
|
|
2015-06-12 06:00:04 +02:00
|
|
|
public function className()
|
|
|
|
{
|
|
|
|
return $this->className;
|
2015-06-11 04:27:04 +02:00
|
|
|
}
|
|
|
|
|
2017-06-19 23:14:38 +02:00
|
|
|
public function formButtons()
|
|
|
|
{
|
|
|
|
return $this->formButtons;
|
|
|
|
}
|
|
|
|
|
2016-06-20 02:45:09 +02:00
|
|
|
public function isCompatible()
|
|
|
|
{
|
2017-05-30 19:18:18 +02:00
|
|
|
$bluditRoot = explode('.', BLUDIT_VERSION);
|
|
|
|
$compatible = explode(',', $this->getMetadata('compatible'));
|
|
|
|
foreach( $compatible as $version ) {
|
|
|
|
$root = explode('.', $version);
|
|
|
|
if( $root[0]==$bluditRoot[0] && $root[1]==$bluditRoot[1] ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2016-06-20 02:45:09 +02:00
|
|
|
}
|
|
|
|
|
2015-07-03 22:44:26 +02:00
|
|
|
public function directoryName()
|
|
|
|
{
|
|
|
|
return $this->directoryName;
|
|
|
|
}
|
|
|
|
|
2017-07-05 19:59:51 +02:00
|
|
|
// Return TRUE if the installation success, otherwise FALSE.
|
2017-07-30 23:15:33 +02:00
|
|
|
public function install($position=1)
|
2015-03-08 18:02:59 +01:00
|
|
|
{
|
2015-06-11 04:27:04 +02:00
|
|
|
if($this->installed()) {
|
2015-03-08 18:02:59 +01:00
|
|
|
return false;
|
2015-06-11 04:27:04 +02:00
|
|
|
}
|
2015-03-08 18:02:59 +01:00
|
|
|
|
2016-06-05 03:31:07 +02:00
|
|
|
// Create plugin directory for databases and other files
|
2015-06-11 04:27:04 +02:00
|
|
|
mkdir(PATH_PLUGINS_DATABASES.$this->directoryName, 0755, true);
|
2015-03-08 18:02:59 +01:00
|
|
|
|
2015-07-14 06:41:32 +02:00
|
|
|
// Create database
|
2015-08-01 18:28:47 +02:00
|
|
|
$this->dbFields['position'] = $position;
|
|
|
|
$this->setDb($this->dbFields);
|
2015-03-08 18:02:59 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function uninstall()
|
|
|
|
{
|
2017-07-05 23:30:30 +02:00
|
|
|
$path = PATH_PLUGINS_DATABASES.$this->directoryName;
|
|
|
|
return Filesystem::deleteRecursive($path);
|
2015-03-08 18:02:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function installed()
|
|
|
|
{
|
2015-07-14 04:16:28 +02:00
|
|
|
return file_exists($this->filenameDb);
|
2015-03-08 18:02:59 +01:00
|
|
|
}
|
|
|
|
|
2017-07-05 22:55:03 +02:00
|
|
|
public function workspace()
|
|
|
|
{
|
|
|
|
return PATH_PLUGINS_DATABASES.$this->directoryName.DS;
|
|
|
|
}
|
|
|
|
|
2015-03-08 18:02:59 +01:00
|
|
|
public function init()
|
|
|
|
{
|
2015-06-11 04:27:04 +02:00
|
|
|
// This method is used on childre classes.
|
2017-06-18 22:44:07 +02:00
|
|
|
// The user can define his own field of the database
|
|
|
|
}
|
|
|
|
|
|
|
|
public function post()
|
|
|
|
{
|
2017-06-19 23:14:38 +02:00
|
|
|
$args = $_POST;
|
|
|
|
foreach($this->dbFields as $key=>$value) {
|
|
|
|
if( isset($args[$key]) ) {
|
|
|
|
$value = Sanitize::html( $args[$key] );
|
|
|
|
if($value==='false') { $value = false; }
|
|
|
|
elseif($value==='true') { $value = true; }
|
|
|
|
settype($value, gettype($this->dbFields[$key]));
|
|
|
|
$this->db[$key] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $this->save();
|
2015-05-05 03:00:01 +02:00
|
|
|
}
|
2015-03-08 18:02:59 +01:00
|
|
|
|
2017-07-05 23:30:30 +02:00
|
|
|
// Returns the parameters after the URI, FALSE if the URI doesn't match with the webhook
|
2017-07-07 23:38:01 +02:00
|
|
|
// Example: https://www.mybludit.com/api/foo/bar
|
2017-07-29 01:20:47 +02:00
|
|
|
public function webhook($URI=false, $returnsAfterURI=false, $fixed=true)
|
2017-07-05 19:59:51 +02:00
|
|
|
{
|
|
|
|
global $Url;
|
|
|
|
|
2017-07-29 01:20:47 +02:00
|
|
|
if (empty($URI)) {
|
2017-07-05 19:59:51 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check URI start with the webhook
|
|
|
|
$startString = HTML_PATH_ROOT.$URI;
|
|
|
|
$URI = $Url->uri();
|
|
|
|
$length = mb_strlen($startString, CHARSET);
|
2017-07-29 01:20:47 +02:00
|
|
|
if (mb_substr($URI, 0, $length)!=$startString) {
|
2017-07-05 19:59:51 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-29 01:20:47 +02:00
|
|
|
$afterURI = mb_substr($URI, $length);
|
|
|
|
if (!empty($afterURI)) {
|
|
|
|
if ($fixed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ($afterURI[0]!='/') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($returnsAfterURI) {
|
|
|
|
return $afterURI;
|
2017-07-07 23:38:01 +02:00
|
|
|
}
|
|
|
|
|
2017-07-05 19:59:51 +02:00
|
|
|
Log::set(__METHOD__.LOG_SEP.'Webhook requested.');
|
2017-07-06 23:27:22 +02:00
|
|
|
return true;
|
2017-07-05 19:59:51 +02:00
|
|
|
}
|
|
|
|
|
2016-06-05 03:31:07 +02:00
|
|
|
}
|