Merge branch 'develop' into feature/new-folder-modal

This commit is contained in:
Flavio Copes
2016-02-04 21:05:00 +01:00
23 changed files with 354 additions and 244 deletions

View File

@@ -15,7 +15,7 @@ use Grav\Common\User\User;
use Grav\Common\Utils;
use RocketTheme\Toolbox\File\File;
use RocketTheme\Toolbox\File\JsonFile;
use RocketTheme\Toolbox\File\LogFile;
use RocketTheme\Toolbox\ResourceLocator\UniformResourceIterator;
use RocketTheme\Toolbox\ResourceLocator\UniformResourceLocator;
use RocketTheme\Toolbox\Session\Message;
use RocketTheme\Toolbox\Session\Session;
@@ -71,15 +71,15 @@ class Admin
public $user;
/**
* @var Lang
*/
protected $lang;
/**
* @var Grav\Common\GPM\GPM
* @var GPM
*/
protected $gpm;
/**
* @var int
*/
protected $pages_count;
/**
* Constructor.
*
@@ -184,8 +184,7 @@ class Admin
/** @var Grav $grav */
$grav = $this->grav;
$this->setMessage($this->translate('PLUGIN_ADMIN.LOGIN_LOGGED_IN', [$this->user->language]), 'info');
$this->setMessage($this->translate('PLUGIN_ADMIN.LOGIN_LOGGED_IN'), 'info');
$redirect_route = $this->uri->route();
$grav->redirect($redirect_route);
}
@@ -340,9 +339,12 @@ class Admin
$type = preg_replace('|config/|', '', $type);
$blueprints = $this->blueprints("config/{$type}");
$config = $this->grav['config'];
$obj = new Data\Data($config->get($type), $blueprints);
$obj = new Data\Data($config->get($type, []), $blueprints);
$obj->merge($post);
$file = CompiledYamlFile::instance($this->grav['locator']->findResource("config://{$type}.yaml"));
// FIXME: We shouldn't allow user to change configuration files in system folder!
$filename = $this->grav['locator']->findResource("config://{$type}.yaml")
?: $this->grav['locator']->findResource("config://{$type}.yaml", true, true);
$file = CompiledYamlFile::instance($filename);
$obj->file($file);
$data[$type] = $obj;
} else {
@@ -386,6 +388,8 @@ class Admin
/**
* Get all routes.
*
* @param bool $unique
*
* @return array
*/
public function routes($unique = false)
@@ -406,12 +410,13 @@ class Admin
*
* @return array
*/
public function countPages()
public function pagesCount()
{
$routable = $this->grav['pages']->all()->routable();
$modular = $this->grav['pages']->all()->modular();
if (!$this->pages_count) {
$this->pages_count = count($this->grav['pages']->all());
}
return count($routable) + count($modular);
return $this->pages_count;
}
/**
@@ -451,6 +456,8 @@ class Admin
/**
* Get all plugins.
*
* @param bool $local
*
* @return array
*/
public function plugins($local = true)
@@ -458,7 +465,7 @@ class Admin
$gpm = $this->gpm();
if (!$gpm) {
return;
return false;
}
return $local ? $gpm->getInstalledPlugins() : $gpm->getRepositoryPlugins()->filter(function (
@@ -472,6 +479,8 @@ class Admin
/**
* Get all themes.
*
* @param bool $local
*
* @return array
*/
public function themes($local = true)
@@ -479,7 +488,7 @@ class Admin
$gpm = $this->gpm();
if (!$gpm) {
return;
return false;
}
return $local ? $gpm->getInstalledThemes() : $gpm->getRepositoryThemes()->filter(function ($package, $slug) use
@@ -496,7 +505,7 @@ class Admin
*
* @param integer $count number of pages to pull back
*
* @return array
* @return array|null
*/
public function latestPages($count = 10)
{
@@ -506,7 +515,7 @@ class Admin
$latest = array();
if(is_null($pages->routes())){
return;
return null;
}
foreach ($pages->routes() as $url => $path) {
@@ -698,18 +707,19 @@ class Admin
}
/**
* Return the configuration files found
* Return the found configuration blueprints
*
* @return array
*/
public static function configurations()
{
$configurations = [];
$path = Grav::instance()['locator']->findResource('user://config');
/** @var \DirectoryIterator $directory */
foreach (new \DirectoryIterator($path) as $file) {
if ($file->isDir() || $file->isDot() || !preg_match('/^[^.].*.yaml$/', $file->getFilename())) {
/** @var UniformResourceIterator $iterator */
$iterator = Grav::instance()['locator']->getIterator('blueprints://config');
foreach ($iterator as $file) {
if ($file->isDir() || !preg_match('/^[^.].*.yaml$/', $file->getFilename())) {
continue;
}
$configurations[] = basename($file->getBasename(), '.yaml');
@@ -744,6 +754,7 @@ class Admin
$pages = Grav::instance()['pages'];
$route = '/' . ltrim(Grav::instance()['admin']->route, '/');
/** @var Page $page */
$page = $pages->dispatch($route);
$parent_route = null;
if ($page) {
@@ -824,14 +835,11 @@ class Admin
/**
* Translate a string to the user-defined language
*
* @param $string the string to translate
* @param array|mixed $args
*
* @return string
*/
public function translate($string)
{
return $this->_translate($string, [$this->grav['user']->authenticated ? $this->grav['user']->language : 'en']);
}
public function _translate($args, Array $languages = null, $array_support = false, $html_out = false)
public function translate($args)
{
if (is_array($args)) {
$lookup = array_shift($args);
@@ -840,6 +848,8 @@ class Admin
$args = [];
}
$languages = [$this->grav['user']->authenticated ? $this->grav['user']->language : 'en'];
if ($lookup) {
if (empty($languages) || reset($languages) == null) {
if ($this->grav['config']->get('system.languages.translations_fallback', true)) {
@@ -848,22 +858,19 @@ class Admin
$languages = (array)$this->grav['language']->getDefault();
}
}
} else {
$languages = ['en'];
}
foreach ((array)$languages as $lang) {
$translation = $this->grav['language']->getTranslation($lang, $lookup, $array_support);
$translation = $this->grav['language']->getTranslation($lang, $lookup);
if (!$translation) {
$language = $this->grav['language']->getDefault() ?: 'en';
$translation = $this->grav['language']->getTranslation($language, $lookup, $array_support);
$translation = $this->grav['language']->getTranslation($language, $lookup);
}
if (!$translation) {
$language = 'en';
$translation = $this->grav['language']->getTranslation($language, $lookup, $array_support);
$translation = $this->grav['language']->getTranslation($language, $lookup);
}
if ($translation) {
@@ -878,6 +885,10 @@ class Admin
return $lookup;
}
/**
* @param string $php_format
* @return string
*/
function dateformat2Kendo($php_format)
{
$SYMBOLS_MATCHING = array(

View File

@@ -8,7 +8,7 @@ use Grav\Common\GPM\Installer;
use Grav\Common\Grav;
use Grav\Common\Uri;
use Grav\Common\Data;
use Grav\Common\Page;
use Grav\Common\Page\Page;
use Grav\Common\Page\Pages;
use Grav\Common\Page\Collection;
use Grav\Common\Plugin;
@@ -16,10 +16,10 @@ use Grav\Common\Theme;
use Grav\Common\User\User;
use Grav\Common\Utils;
use Grav\Common\Backup\ZipBackup;
use Grav\Common\Markdown\Parsedown;
use Grav\Common\Markdown\ParsedownExtra;
use RocketTheme\Toolbox\Event\Event;
use RocketTheme\Toolbox\File\File;
use RocketTheme\Toolbox\File\JsonFile;
use Symfony\Component\Yaml\Exception\ParseException;
use Symfony\Component\Yaml\Yaml;
class AdminController
@@ -380,7 +380,7 @@ class AdminController
protected function taskClearCache()
{
if (!$this->authorizeTask('clear cache', ['admin.cache', 'admin.super'])) {
return;
return false;
}
// get optional cleartype param
@@ -411,7 +411,7 @@ class AdminController
{
$param_sep = $this->grav['config']->get('system.param_sep', ':');
if (!$this->authorizeTask('backup', ['admin.maintenance', 'admin.super'])) {
return;
return false;
}
$download = $this->grav['uri']->param('download');
@@ -562,7 +562,7 @@ class AdminController
protected function taskListmedia()
{
if (!$this->authorizeTask('list media', ['admin.pages', 'admin.super'])) {
return;
return false;
}
$page = $this->admin->page(true);
@@ -583,11 +583,13 @@ class AdminController
/**
* Handles adding a media file to a page
*
* @return bool True if the action was performed.
*/
protected function taskAddmedia()
{
if (!$this->authorizeTask('add media', ['admin.pages', 'admin.super'])) {
return;
return false;
}
$page = $this->admin->page(true);
@@ -597,7 +599,7 @@ class AdminController
if (!isset($_FILES['file']['error']) || is_array($_FILES['file']['error'])) {
$this->admin->json_response = ['status' => 'error', 'message' => $this->admin->translate('PLUGIN_ADMIN.INVALID_PARAMETERS')];
return;
return false;
}
// Check $_FILES['file']['error'] value.
@@ -606,44 +608,47 @@ class AdminController
break;
case UPLOAD_ERR_NO_FILE:
$this->admin->json_response = ['status' => 'error', 'message' => $this->admin->translate('PLUGIN_ADMIN.NO_FILES_SENT')];
return;
return false;
case UPLOAD_ERR_INI_SIZE:
case UPLOAD_ERR_FORM_SIZE:
$this->admin->json_response = ['status' => 'error', 'message' => $this->admin->translate('PLUGIN_ADMIN.EXCEEDED_FILESIZE_LIMIT')];
return;
return false;
default:
$this->admin->json_response = ['status' => 'error', 'message' => $this->admin->translate('PLUGIN_ADMIN.UNKNOWN_ERRORS')];
return;
return false;
}
$grav_limit = $config->get('system.media.upload_limit', 0);
// You should also check filesize here.
if ($grav_limit > 0 && $_FILES['file']['size'] > $grav_limit) {
$this->admin->json_response = ['status' => 'error', 'message' => $this->admin->translate('PLUGIN_ADMIN.EXCEEDED_GRAV_FILESIZE_LIMIT')];
return;
return false;
}
// Check extension
$fileParts = pathinfo($_FILES['file']['name']);
$fileExt = strtolower($fileParts['extension']);
// If not a supported type, return
if (!$config->get("media.{$fileExt}")) {
$this->admin->json_response = ['status' => 'error', 'message' => $this->admin->translate('PLUGIN_ADMIN.UNSUPPORTED_FILE_TYPE') . ': '.$fileExt];
return;
$fileExt = '';
if (isset($fileParts['extension'])) {
$fileExt = strtolower($fileParts['extension']);
}
// If not a supported type, return
if (!$fileExt || !$config->get("media.{$fileExt}")) {
$this->admin->json_response = ['status' => 'error', 'message' => $this->admin->translate('PLUGIN_ADMIN.UNSUPPORTED_FILE_TYPE') . ': '.$fileExt];
return false;
}
// Upload it
if (!move_uploaded_file($_FILES['file']['tmp_name'], sprintf('%s/%s', $page->path(), $_FILES['file']['name']))) {
$this->admin->json_response = ['status' => 'error', 'message' => $this->admin->translate('PLUGIN_ADMIN.FAILED_TO_MOVE_UPLOADED_FILE')];
return;
return false;
}
$this->admin->json_response = ['status' => 'success', 'message' => $this->admin->translate('PLUGIN_ADMIN.FILE_UPLOADED_SUCCESSFULLY')];
return;
return true;
}
/**
@@ -654,7 +659,7 @@ class AdminController
protected function taskDelmedia()
{
if (!$this->authorizeTask('delete media', ['admin.pages', 'admin.super'])) {
return;
return false;
}
$page = $this->admin->page(true);
@@ -666,7 +671,7 @@ class AdminController
$filename = !empty($this->post['filename']) ? $this->post['filename'] : null;
if ($filename) {
$targetPath = $page->path().'/'.$filename;
$targetPath = $page->path() . '/' . $filename;
if (file_exists($targetPath)) {
if (unlink($targetPath)) {
@@ -677,18 +682,20 @@ class AdminController
} else {
//Try with responsive images @1x, @2x, @3x
$ext = pathinfo($targetPath, PATHINFO_EXTENSION);
$filename = $page->path() . '/'. basename($targetPath, ".$ext");
$responsiveTargetPath = $filename . '@1x.' . $ext;
$fullPathFilename = $page->path() . '/'. basename($targetPath, ".$ext");
$responsiveTargetPath = $fullPathFilename . '@1x.' . $ext;
$deletedResponsiveImage = false;
if (file_exists($responsiveTargetPath) && unlink($responsiveTargetPath)) {
$deletedResponsiveImage = true;
}
$responsiveTargetPath = $filename . '@2x.' . $ext;
$responsiveTargetPath = $fullPathFilename . '@2x.' . $ext;
if (file_exists($responsiveTargetPath) && unlink($responsiveTargetPath)) {
$deletedResponsiveImage = true;
}
$responsiveTargetPath = $filename . '@3x.' . $ext;
$responsiveTargetPath = $fullPathFilename . '@3x.' . $ext;
if (file_exists($responsiveTargetPath) && unlink($responsiveTargetPath)) {
$deletedResponsiveImage = true;
}
@@ -709,6 +716,8 @@ class AdminController
/**
* Process the page Markdown
*
* @return bool True if the action was performed.
*/
protected function taskProcessMarkdown()
{
@@ -734,11 +743,13 @@ class AdminController
$html = $page->content();
$this->admin->json_response = ['status' => 'success', 'message' => $html];
return true;
} catch (\Exception $e) {
$this->admin->json_response = ['status' => 'error', 'message' => $e->getMessage()];
return false;
}
return true;
}
/**
@@ -749,7 +760,7 @@ class AdminController
public function taskEnable()
{
if (!$this->authorizeTask('enable plugin', ['admin.plugins', 'admin.super'])) {
return;
return false;
}
if ($this->view != 'plugins') {
@@ -775,7 +786,7 @@ class AdminController
public function taskDisable()
{
if (!$this->authorizeTask('disable plugin', ['admin.plugins', 'admin.super'])) {
return;
return false;
}
if ($this->view != 'plugins') {
@@ -801,7 +812,7 @@ class AdminController
public function taskActivate()
{
if (!$this->authorizeTask('activate theme', ['admin.themes', 'admin.super'])) {
return;
return false;
}
if ($this->view != 'themes') {
@@ -840,7 +851,7 @@ class AdminController
{
$type = $this->view === 'plugins' ? 'plugins' : 'themes';
if (!$this->authorizeTask('install ' . $type, ['admin.' . $type, 'admin.super'])) {
return;
return false;
}
require_once __DIR__ . '/gpm.php';
@@ -915,7 +926,7 @@ class AdminController
foreach ($permissions as $type => $p) {
if (!$this->authorizeTask('update ' . $type , $p)) {
return;
return false;
}
}
@@ -951,7 +962,7 @@ class AdminController
{
$type = $this->view === 'plugins' ? 'plugins' : 'themes';
if (!$this->authorizeTask('uninstall ' . $type, ['admin.' . $type, 'admin.super'])) {
return;
return false;
}
require_once __DIR__ . '/gpm.php';
@@ -971,6 +982,11 @@ class AdminController
return true;
}
/**
* @param string $key
* @param string $file
* @return bool
*/
private function cleanFilesData($key, $file)
{
$config = $this->grav['config'];
@@ -1031,6 +1047,11 @@ class AdminController
return $cleanFiles[$key];
}
/**
* @param string $needle
* @param array|string $haystack
* @return bool
*/
private function match_in_array($needle, $haystack)
{
foreach ((array)$haystack as $item) {
@@ -1042,6 +1063,10 @@ class AdminController
return false;
}
/**
* @param mixed $obj
* @return mixed
*/
private function processFiles($obj)
{
foreach ((array)$_FILES as $key => $file) {
@@ -1108,6 +1133,29 @@ class AdminController
return true;
}
/*
* @param string $frontmatter
* @return bool
*/
public function checkValidFrontmatter($frontmatter)
{
try {
// Try native PECL YAML PHP extension first if available.
if (function_exists('yaml_parse')) {
$saved = @ini_get('yaml.decode_php');
@ini_set('yaml.decode_php', 0);
@yaml_parse("---\n" . $frontmatter . "\n...");
@ini_set('yaml.decode_php', $saved);
} else {
Yaml::parse($frontmatter);
}
} catch (ParseException $e) {
return false;
}
return true;
}
/**
* Handles form and saves the input data if its valid.
*
@@ -1116,21 +1164,27 @@ class AdminController
public function taskSave()
{
if (!$this->authorizeTask('save', $this->dataPermissions())) {
return;
return false;
}
$data = $this->post;
$config = $this->grav['config'];
// Special handler for pages data.
if ($this->view == 'pages') {
/** @var Page\Pages $pages */
/** @var Pages $pages */
$pages = $this->grav['pages'];
$config = $this->grav['config'];
// Find new parent page in order to build the path.
$route = !isset($data['route']) ? dirname($this->admin->route) : $data['route'];
$obj = $this->admin->page(true);
if (isset($data['frontmatter']) && !$this->checkValidFrontmatter($data['frontmatter'])) {
$this->admin->setMessage($this->admin->translate('PLUGIN_ADMIN.INVALID_FRONTMATTER_COULD_NOT_SAVE'), 'error');
return false;
}
//Handle system.home.hide_in_urls
$hide_home_route = $config->get('system.home.hide_in_urls', false);
if ($hide_home_route) {
@@ -1187,6 +1241,9 @@ class AdminController
}
if ($obj) {
// Event to manipulate data before saving the object
$this->grav->fireEvent('onAdminSave', new Event(['object' => &$obj]));
$obj->save(true);
$this->admin->setMessage($this->admin->translate('PLUGIN_ADMIN.SUCCESSFULLY_SAVED'), 'info');
}
@@ -1203,7 +1260,7 @@ class AdminController
}
// Always redirect if a page route was changed, to refresh it
if ($obj instanceof Page\Page) {
if ($obj instanceof Page) {
if (method_exists($obj, 'unsetRouteSlug')) {
$obj->unsetRouteSlug();
}
@@ -1287,7 +1344,7 @@ class AdminController
protected function taskCopy()
{
if (!$this->authorizeTask('copy page', ['admin.pages', 'admin.super'])) {
return;
return false;
}
// Only applies to pages.
@@ -1296,7 +1353,7 @@ class AdminController
}
try {
/** @var Page\Pages $pages */
/** @var Pages $pages */
$pages = $this->grav['pages'];
$data = $this->post;
@@ -1345,7 +1402,7 @@ class AdminController
protected function taskReorder()
{
if (!$this->authorizeTask('reorder pages', ['admin.pages', 'admin.super'])) {
return;
return false;
}
// Only applies to pages.
@@ -1366,7 +1423,7 @@ class AdminController
protected function taskDelete()
{
if (!$this->authorizeTask('delete page', ['admin.pages', 'admin.super'])) {
return;
return false;
}
// Only applies to pages.
@@ -1443,7 +1500,7 @@ class AdminController
protected function taskSaveas()
{
if (!$this->authorizeTask('save', $this->dataPermissions())) {
return;
return false;
}
$data = $this->post;
@@ -1480,7 +1537,7 @@ class AdminController
$aFile = File::instance($path);
$aFile->save();
$aPage = new Page\Page();
$aPage = new Page();
$aPage->init(new \SplFileInfo($path), $language .'.md');
$aPage->header($obj->header());
$aPage->rawMarkdown($obj->rawMarkdown());

View File

@@ -1,7 +1,7 @@
<?php
namespace Grav\Plugin\Admin;
use Grav\Common\GravTrait;
use Grav;
use Grav\Common\GPM\GPM as GravGPM;
use Grav\Common\GPM\Installer;
use Grav\Common\GPM\Response;
@@ -11,8 +11,6 @@ use Grav\Common\GPM\Common\Package;
class Gpm
{
use GravTrait;
// Probably should move this to Grav DI container?
protected static $GPM;
public static function GPM()
@@ -36,7 +34,12 @@ class Gpm
'theme' => false
];
public static function install($packages, $options)
/**
* @param Package[]|string[]|string $packages
* @param array $options
* @return bool
*/
public static function install($packages, array $options)
{
$options = array_merge(self::$options, $options);
@@ -93,13 +96,24 @@ class Gpm
return true;
}
public static function update($packages, $options)
/**
* @param Package[]|string[]|string $packages
* @param array $options
* @return bool
*/
public static function update($packages, array $options)
{
$options['overwrite'] = true;
return static::install($packages, $options);
}
public static function uninstall($packages, $options)
/**
* @param Package[]|string[]|string $packages
* @param array $options
* @return bool
*/
public static function uninstall($packages, array $options)
{
$options = array_merge(self::$options, $options);
@@ -124,7 +138,7 @@ class Gpm
foreach ($packages as $package) {
$location = self::getGrav()['locator']->findResource($package->package_type . '://' . $package->slug);
$location = Grav::instance()['locator']->findResource($package->package_type . '://' . $package->slug);
// Check destination
Installer::isValidDestination($location);
@@ -144,11 +158,15 @@ class Gpm
return true;
}
private static function download($package)
/**
* @param Package $package
* @return string
*/
private static function download(Package $package)
{
$contents = Response::get($package->zipball_url, []);
$cache_dir = self::getGrav()['locator']->findResource('cache://', true);
$cache_dir = Grav::instance()['locator']->findResource('cache://', true);
$cache_dir = $cache_dir . DS . 'tmp/Grav-' . uniqid();
Folder::mkdir($cache_dir);
@@ -159,7 +177,12 @@ class Gpm
return $cache_dir . DS . $filename . '.zip';
}
private static function _downloadSelfupgrade($package, $tmp)
/**
* @param array $package
* @param string $tmp
* @return string
*/
private static function _downloadSelfupgrade(array $package, $tmp)
{
$output = Response::get($package['download'], []);
Folder::mkdir($tmp);
@@ -167,6 +190,9 @@ class Gpm
return $tmp . DS . $package['name'];
}
/**
* @return bool
*/
public static function selfupgrade()
{
$upgrader = new Upgrader();

View File

@@ -3,16 +3,15 @@ namespace Grav\Plugin;
use Grav\Common\Config\Config;
use Grav\Common\Grav;
use Grav\Common\Plugins;
use Grav\Common\Themes;
use Grav\Common\Page\Page;
use Grav\Common\Data;
use Grav\Common\GravTrait;
/**
* Class Popularity
* @package Grav\Plugin
*/
class Popularity
{
use GravTrait;
/** @var Config */
protected $config;
protected $data_path;
@@ -36,9 +35,9 @@ class Popularity
public function __construct()
{
$this->config = self::getGrav()['config'];
$this->config = Grav::instance()['config'];
$this->data_path = self::$grav['locator']->findResource('log://popularity', true, true);
$this->data_path = Grav::instance()['locator']->findResource('log://popularity', true, true);
$this->daily_file = $this->data_path.'/'.self::DAILY_FILE;
$this->monthly_file = $this->data_path.'/'.self::MONTHLY_FILE;
$this->totals_file = $this->data_path.'/'.self::TOTALS_FILE;
@@ -49,13 +48,13 @@ class Popularity
public function trackHit()
{
// Don't track bot or crawler requests
if (!self::getGrav()['browser']->isHuman()) {
if (!Grav::instance()['browser']->isHuman()) {
return;
}
/** @var Page $page */
$page = self::getGrav()['page'];
$relative_url = str_replace(self::getGrav()['base_url_relative'], '', $page->url());
$page = Grav::instance()['page'];
$relative_url = str_replace(Grav::instance()['base_url_relative'], '', $page->url());
// Don't track error pages or pages that have no route
if ($page->template() == 'error' || !$page->route()) {
@@ -79,7 +78,7 @@ class Popularity
$this->updateDaily();
$this->updateMonthly();
$this->updateTotals($page->route());
$this->updateVisitors(self::getGrav()['uri']->ip());
$this->updateVisitors(Grav::instance()['uri']->ip());
}
@@ -110,6 +109,9 @@ class Popularity
file_put_contents($this->daily_file, json_encode($this->daily_data));
}
/**
* @return array
*/
public function getDailyChartData()
{
if (!$this->daily_data) {
@@ -123,13 +125,16 @@ class Popularity
$data = array();
foreach ($chart_data as $date => $count) {
$labels[] = self::getGrav()['grav']['admin']->translate(['PLUGIN_ADMIN.' . strtoupper(date('D', strtotime($date)))]);
$labels[] = Grav::instance()['grav']['admin']->translate(['PLUGIN_ADMIN.' . strtoupper(date('D', strtotime($date)))]);
$data[] = $count;
}
return array('labels' => json_encode($labels), 'data' => json_encode($data));
}
/**
* @return int
*/
public function getDailyTotal()
{
if (!$this->daily_data) {
@@ -143,6 +148,9 @@ class Popularity
}
}
/**
* @return int
*/
public function getWeeklyTotal()
{
if (!$this->daily_data) {
@@ -160,6 +168,9 @@ class Popularity
return $total;
}
/**
* @return int
*/
public function getMonthlyTotal()
{
if (!$this->monthly_data) {
@@ -197,6 +208,9 @@ class Popularity
file_put_contents($this->monthly_file, json_encode($this->monthly_data));
}
/**
* @return array
*/
protected function getMonthyChartData()
{
if (!$this->monthly_data) {
@@ -213,6 +227,9 @@ class Popularity
return array('labels' => $labels, 'data' => $data);
}
/**
* @param string $url
*/
protected function updateTotals($url)
{
if (!$this->totals_data) {
@@ -229,6 +246,9 @@ class Popularity
file_put_contents($this->totals_file, json_encode($this->totals_data));
}
/**
* @param string $ip
*/
protected function updateVisitors($ip)
{
if (!$this->visitors_data) {
@@ -246,6 +266,10 @@ class Popularity
file_put_contents($this->visitors_file, json_encode($this->visitors_data));
}
/**
* @param string $path
* @return array
*/
protected function getData($path)
{
if (file_exists($path)) {