lbrypress/classes/lbrypress.php
2018-10-04 18:47:32 -05:00

191 lines
5 KiB
PHP

<?php
/**
* Main LBRYPress class
*
* @package LBRYPress
*/
class LBRYPress
{
/**
* Version of LBRYPress
*/
public $version = '0.0.1';
/**
* The single instance of this class
*/
protected static $_instance = null;
/**
* The LBRY Daemon Interface
*/
public $daemon = null;
/**
* The LBRY Admin object
*/
public $admin = null;
/**
* The LBRY Spee.ch object
*/
public $speech = null;
/**
* The Admin Notice object
*/
public $notice = null;
/**
* Main LBRYPress Instance.
*
* Ensures only one instance of LBRYPress is loaded or can be loaded.
*/
public static function instance()
{
if (is_null(self::$_instance)) {
self::$_instance = new self();
}
return self::$_instance;
}
/**
* LBRYPress Constructor
*/
public function __construct()
{
$this->define_constants();
spl_autoload_register(array($this, 'lbry_autoload_register'));
$this->init();
$this->init_hooks();
}
/**
* Define a constant if its not already set.
*
* @param string $name Constant name.
* @param string|bool $value Constant value.
*/
private function define($name, $value)
{
if (! defined($name)) {
define($name, $value);
}
}
/**
* Define all LBRYPress constants
*/
private function define_constants()
{
$upload_dir = wp_upload_dir(null, false);
$this->define('LBRY_ABSPATH', dirname(LBRY_PLUGIN_FILE) . '/');
$this->define('LBRY_NAME', plugin_basename(LBRY_PLUGIN_FILE));
$this->define('LBRY_VERSION', $this->version);
// Library Options Names
$this->define('LBRY_SETTINGS_GROUP', 'lbry_settings_group');
$this->define('LBRY_SETTINGS', 'lbry_settings');
$this->define('LBRY_SETTINGS_SECTION_GENERAL', 'lbry_settings_section_general');
$this->define('LBRY_ADMIN_PAGE', 'lbrypress');
$this->define('LBRY_WALLET', 'lbry_wallet'); // the wallet address
$this->define('LBRY_SPEECH', 'lbry_speech'); // the spee.ch address
$this->define('LBRY_LICENSE', 'lbry_license'); // the license to publish with to the LBRY network
$this->define('LBRY_LBC_PUBLISH', 'lbry_lbc_publish'); // amount of lbc to use per publish
$this->define('LBRY_AVAILABLE_LICENSES', array(
'mit' => 'MIT',
'license2' => 'License 2',
'license3' => 'License 3'
));
}
/**
* Autoloader Registration
*/
private function lbry_autoload_register($class)
{
$file_name = LBRY_ABSPATH . 'classes/' . $class . '.php';
if (file_exists($file_name)) {
require $file_name;
return;
}
}
/**
* Initialize this class itself
*/
private function init()
{
$this->daemon = new LBRY_Daemon();
$this->speech = new LBRY_Speech();
$this->notice = new LBRY_Admin_Notice();
}
/**
* Set up all hooks and actions necessary for the plugin to run
*/
private function init_hooks()
{
register_activation_hook(LBRY_PLUGIN_FILE, array($this, 'activate'));
register_deactivation_hook(LBRY_PLUGIN_FILE, array($this, 'deactivate'));
// Admin request
if (is_admin()) {
$this->admin = new LBRY_Admin();
} else {
$this->speech->maybe_rewrite_urls();
}
}
/**
* Run during plugin activation
*/
public function activate()
{
// TODO: Make sure errors are thrown if daemon can't be contacted, stop activation
// Add options to the options table we need
if (! get_option(LBRY_SETTINGS)) {
// Get a wallet address
// TODO: May have to rethink this based on how wallet address are linked to daemon
$wallet_address = $this->daemon->wallet_unused_address();
// Default options
$option_defaults = array(
LBRY_WALLET => $wallet_address,
LBRY_SPEECH => null,
LBRY_LICENSE => 'mit',
LBRY_LBC_PUBLISH => 1
);
add_option(LBRY_SETTINGS, $option_defaults, false);
}
// COMBAK: decide if we need to check for missing or corrupt settings. May be unecessary.
// Double check we have all settings, if not, update with default
// $current_settings = get_option(LBRY_SETTINGS);
// $new_settings = $current_settings;
// foreach ($option_defaults as $key => $value) {
// if (! array_key_exists($key, $current_settings)) {
// $new_settings[$key] = $value;
// }
// }
// update_option(LBRY_SETTINGS, $new_settings);
error_log('Activated');
}
/**
* Clean up on deactivation
*/
public function deactivate()
{
error_log('Deactivated');
}
}