HummingBirdAnimeClient/src/AnimeClient.php

70 lines
1.6 KiB
PHP
Raw Normal View History

2015-11-16 19:30:04 -05:00
<?php
/**
* Hummingbird Anime Client
*
* An API client for Hummingbird to manage anime and manga watch lists
*
2016-08-30 10:01:18 -04:00
* PHP version 5.6
*
2015-11-16 19:30:04 -05:00
* @package HummingbirdAnimeClient
2016-08-30 10:01:18 -04:00
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2015 - 2016 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.1
2015-11-16 19:30:04 -05:00
* @link https://github.com/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient;
use Yosymfony\Toml\Toml;
2016-08-29 16:36:13 -04:00
define('SRC_DIR', realpath(__DIR__));
2016-01-06 17:06:30 -05:00
/**
* Application constants
*/
2015-11-16 19:30:04 -05:00
class AnimeClient {
const HUMMINGBIRD_AUTH_URL = 'https://hummingbird.me/api/v1/users/authenticate';
2016-01-04 10:53:03 -05:00
const SESSION_SEGMENT = 'Aviat\AnimeClient\Auth';
2016-01-06 11:08:56 -05:00
const DEFAULT_CONTROLLER_NAMESPACE = 'Aviat\AnimeClient\Controller';
const DEFAULT_CONTROLLER = 'Aviat\AnimeClient\Controller\Anime';
const DEFAULT_CONTROLLER_METHOD = 'index';
const NOT_FOUND_METHOD = 'not_found';
const ERROR_MESSAGE_METHOD = 'error_page';
2016-01-06 17:06:30 -05:00
const SRC_DIR = SRC_DIR;
2016-01-04 10:53:03 -05:00
/**
* Load configuration options from .toml files
*
* @param string $path - Path to load config
* @return array
*/
public static function load_toml($path)
{
$output = [];
$files = glob("{$path}/*.toml");
foreach ($files as $file)
{
$key = str_replace('.toml', '', basename($file));
$toml = file_get_contents($file);
$config = Toml::Parse($toml);
if ($key === 'config')
{
foreach($config as $name => $value)
{
$output[$name] = $value;
}
continue;
}
$output[$key] = $config;
}
return $output;
}
2015-11-16 19:30:04 -05:00
}
// End of AnimeClient.php