feat(tw): Added project_tag_suffix config to use tag for tw project

This commit is contained in:
Aerex 2020-05-28 11:54:21 -05:00
parent 9d78b4a8eb
commit 346e5c239b
13 changed files with 199 additions and 96 deletions

View File

@ -29,7 +29,7 @@
"symfony/yaml": "~3.0|~4.0" "symfony/yaml": "~3.0|~4.0"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^7.4" "phpunit/phpunit": "^8.5.3"
}, },
"authors": [ "authors": [
{ {

7
config.yaml Executable file
View File

@ -0,0 +1,7 @@
logger:
file: /home/aerex/baikal-storage-plugin.log
level: 'DEBUG'
taskwarrior:
taskdata: /home/aerex/.task
taskrc: /home/aerex/.taskrc
project_tag_suffix: project_

View File

@ -9,10 +9,10 @@ use Symfony\Component\Yaml\Yaml;
class ConfigBuilder implements ConfigurationInterface { class ConfigBuilder implements ConfigurationInterface {
private $configs = []; private $configs = [];
private $configDir; private $configFile;
public function __construct($configDir) { public function __construct($configFile) {
$this->configDir = $configDir; $this->configFile = $configFile;
$this->processor = new Processor(); $this->processor = new Processor();
} }
@ -23,7 +23,20 @@ class ConfigBuilder implements ConfigurationInterface {
public function getConfigTreeBuilder() { public function getConfigTreeBuilder() {
$treeBuilder = new TreeBuilder(); $treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('configs'); $rootNode = $treeBuilder->root('configs');
$ref = $rootNode->children(); $ref = $rootNode->children()
->arrayNode('logger')
->canBeEnabled()
->children()
->scalarNode('file')
->end()
->scalarNode('level')
->defaultValue('ERROR')
->validate()
->IfNotInArray(['DEBUG', 'INFO', 'NOTICE', 'WARNING', 'ERROR', 'CRITICAL', 'ALERT', 'EMERGENCY'])
->thenInvalid('Invalid log level %s')
->end()
->end();
foreach ($this->configs as $config) { foreach ($this->configs as $config) {
$ref = $ref->append($config->get()); $ref = $ref->append($config->get());
} }
@ -32,8 +45,7 @@ class ConfigBuilder implements ConfigurationInterface {
} }
public function readContent() { public function readContent() {
$contents = sprintf('%s/storage.yaml', $this->configDir); return file_get_contents($this->configFile);
return file_get_contents($contents);
} }
public function loadYaml() { public function loadYaml() {

View File

@ -15,6 +15,9 @@ class TaskwarriorConfig {
->scalarNode('taskrc') ->scalarNode('taskrc')
->defaultValue('~/.taskrc') ->defaultValue('~/.taskrc')
->end() ->end()
->scalarNode('project_tag_suffix')
->defaultValue('project_')
->end()
->end(); ->end();
return $node; return $node;

63
lib/Logger.php Normal file
View File

@ -0,0 +1,63 @@
<?php
namespace Aerex\BaikalStorage;
use Monolog\Logger as Monolog;
use Monolog\Handler\StreamHandler;
class Logger {
private $configs = ['enabled' => false];
function __construct($configs, $tag) {
if (isset($configs['logger'])) {
$this->configs = $configs['logger'];
}
if ($this->configs['enabled']) {
$this->logger = new Monolog($tag);
$logLevel = Monolog::getLevels()[$this->configs['level']];
$this->logger->pushHandler(new StreamHandler($this->configs['file'], $logLevel));
}
}
public function debug($message) {
if ($this->configs['enabled']) {
$this->logger->debug($message);
}
}
public function info($message) {
if ($this->configs['enabled']) {
$this->logger->info($message);
}
}
public function notice($message) {
if ($this->configs['enabled']) {
$this->logger->notice($message);
}
}
public function error($message) {
if ($this->configs['enabled']) {
$this->logger->error($message);
}
}
public function critical($message) {
if ($this->configs['enabled']) {
$this->logger->critical($message);
}
}
public function alert($message) {
if ($this->configs['enabled']) {
$this->logger->alert($message);
}
}
public function emergency($message) {
if ($this->configs['enabled']) {
$this->logger->emergency($message);
}
}
}

View File

@ -38,14 +38,14 @@ class Plugin extends ServerPlugin {
* @param CalendarProcessor $TWCalManager * @param CalendarProcessor $TWCalManager
* *
*/ */
function __construct($configDir){ function __construct($configFile){
$configs = $this->buildConfigurations($configDir); $configs = $this->buildConfigurations($configFile);
$this->storageManager = new StorageManager($configs); $this->storageManager = new StorageManager($configs);
$this->initializeStorages($configDir, $configs); $this->initializeStorages($configs);
} }
public function buildConfigurations($configDir) { public function buildConfigurations($configFile) {
$this->config = new ConfigBuilder($configDir); $this->config = new ConfigBuilder($configFile);
$this->config->add(new TaskwarriorConfig()); $this->config->add(new TaskwarriorConfig());
return $this->config->loadYaml(); return $this->config->loadYaml();
} }
@ -55,8 +55,8 @@ class Plugin extends ServerPlugin {
* *
*/ */
public function initializeStorages($configDir, $configs) { public function initializeStorages($configs) {
$taskwarrior = new Taskwarrior(new Console(['rc.verbose=nothing', 'rc.hooks=off']), $configDir, $configs); $taskwarrior = new Taskwarrior(new Console(['rc.verbose=nothing', 'rc.hooks=off']), $configs);
$this->storageManager->addStorage(Taskwarrior::NAME, $taskwarrior); $this->storageManager->addStorage(Taskwarrior::NAME, $taskwarrior);
} }

View File

@ -3,19 +3,20 @@
namespace Aerex\BaikalStorage\Storages; namespace Aerex\BaikalStorage\Storages;
use Sabre\VObject\Component\VCalendar as Calendar; use Sabre\VObject\Component\VCalendar as Calendar;
use Aerex\BaikalStorage\Logger;
use Carbon\Carbon; use Carbon\Carbon;
class Taskwarrior implements IStorage { class Taskwarrior implements IStorage {
private const DATA_FILES = ['pending.data', 'completed.data', 'undo.data'];
public const NAME = 'taskwarrior'; public const NAME = 'taskwarrior';
private $tasks = []; private $tasks = [];
private $configDir;
private $configs; private $configs;
public function __construct($console, $configDir, $configs) { private $logger;
public function __construct($console, $configs) {
$this->console = $console; $this->console = $console;
$this->configDir = $configDir;
$this->configs = $configs['taskwarrior']; $this->configs = $configs['taskwarrior'];
$this->logger = new Logger($configs, 'Taskwarrior');
} }
public function getConfig() { public function getConfig() {
@ -23,45 +24,22 @@ class Taskwarrior implements IStorage {
} }
public function refresh() { public function refresh() {
$fp = fopen(sprintf('%s/taskwarrior-baikal-storage.lock', $this->configDir), 'a'); $output = $this->console->execute('task', ['sync'], null,
['TASKRC' => $this->configs['taskrc'],'TASKDATA' => $this->configs['taskdata']]);
if (!$fp || !flock($fp, LOCK_EX | LOCK_NB, $eWouldBlock) || $eWouldBlock) { $this->logger->info($output);
fputs(STDERR, 'Could not get lock');
}
$mtime = 0;
$tasksUpdated = false;
foreach (Taskwarrior::DATA_FILES as $dataFile) {
$fmtime = filemtime(sprintf('%s/%s', $this->configs['taskdata'], $dataFile));
if ($fmtime > $mtime) {
$mtime = $fmtime;
$tasksUpdated = true;
}
}
if ($tasksUpdated) {
$tasks = json_decode($this->console->execute('task', ['export'], null,
['TASKRC' => $this->configs['taskrc'], 'TASKDATA' => $this->configs['taskdata']]), true);
foreach ($tasks as $task) {
$this->tasks[$task['uuid']] = $task;
}
}
fclose($fp);
unlink(sprintf('%s/taskwarrior-baikal-storage.lock', $this->configDir));
} }
public function vObjectToTask($vtodo) { public function vObjectToTask($vtodo) {
if (isset($this->tasks['uid']) && $this->tasks['uid'] == $vtodo->UID) { if (isset($this->tasks[(string)$vtodo->UID])) {
$task = $this->tasks['uid']; $task = $this->tasks[(string)$vtodo->UID];
} else { } else {
$task = []; $task = [];
$task['uid'] = (string)$vtodo->UID; $task['uid'] = (string)$vtodo->UID;
} }
if (isset($vtodo->SUMMARY) && !isset($vtodo->DESCRIPTION)){
if (!isset($vtodo->DESCRIPTION) && isset($vtodo->SUMMARY)){
$task['description'] = (string)$vtodo->SUMMARY; $task['description'] = (string)$vtodo->SUMMARY;
} else { } else if(isset($vtodo->DESCRIPTION)) {
$task['description'] = (string)$vtodo->DESCRIPTION; $task['description'] = (string)$vtodo->DESCRIPTION;
} }
@ -108,49 +86,55 @@ class Taskwarrior implements IStorage {
if (isset($vtodo->STATUS)) { if (isset($vtodo->STATUS)) {
switch((string)$vtodo->STATUS) { switch((string)$vtodo->STATUS) {
case 'NEEDS-ACTION': case 'NEEDS-ACTION':
$task['status'] = 'pending'; $task['status'] = 'pending';
break; break;
case 'COMPLETED': case 'COMPLETED':
$task['status'] = 'completed'; $task['status'] = 'completed';
if (!isset($task['end'])) { if (!isset($task['end'])) {
$task['end'] = new Carbon($vtodo->DTSTAMP->getDateTime()->format(\DateTime::W3C)); $task['end'] = new Carbon($vtodo->DTSTAMP->getDateTime()->format(\DateTime::W3C));
} }
break; break;
case 'CANCELED': case 'CANCELED':
$task['status'] = 'deleted'; $task['status'] = 'deleted';
if (!isset($task['end'])) { if (!isset($task['end'])) {
$task['end'] = new Carbon($vtodo->DTSTAMP->getDateTime()->format(\DateTime::W3C)); $task['end'] = new Carbon($vtodo->DTSTAMP->getDateTime()->format(\DateTime::W3C));
} }
break; break;
} }
} }
if (isset($vtodo->CATEGORIES)) { if (isset($vtodo->CATEGORIES)) {
$task['tags'] = []; $task['tags'] = [];
foreach ($vtodo->CATEGORIES as $category) { foreach ($vtodo->CATEGORIES as $category) {
if (isset($this->configs['project_tag_suffix'])) { if (isset($this->configs['project_tag_suffix'])) {
$projTagSuffixRegExp = sprintf('/^%s_/', $this->configs['project_tag_suffix']); $projTagSuffixRegExp = sprintf('/^%s_/', $this->configs['project_tag_suffix']);
if (preg_match($category, $projTagSuffixRegExp)) { if (preg_match($category, $projTagSuffixRegExp)) {
$task['project'] = preg_replace($projTagSuffixRegExp, '', $category); $task['project'] = preg_replace($projTagSuffixRegExp, '', $category);
continue; continue;
}
} }
$task['tags'] = $category;
} }
$task['tags'] = $category;
}
}
return $task;
} }
public function save(Calendar $c) { return $task;
if (!isset($c->VTODO)){ }
throw new \Exception('Calendar event does not contain VTODO');
} public function save(Calendar $c) {
$this->refresh(); if (!isset($c->VTODO)){
$task = $this->vObjectToTask($c->VTODO); throw new \Exception('Calendar event does not contain VTODO');
$this->console->execute('task', ['import'], $task, $this->logger->error('Calendar event does not contain VTODO');
['TASKRC' => $this->configs['taskrc'],'TASKDATA' => $this->configs['taskdata']]);
}
} }
$this->logger->info($c->VTODO->getJsonValue());
$this->refresh();
$task = $this->vObjectToTask($c->VTODO);
$this->logger->info(json_encode($task));
$this->logger->info(
sprintf('Executing TASKRC = %s TASKDATA = %s task import %s', $this->configs['taskrc'], $this->configs['taskdata'], $task)
);
$output = $this->console->execute('task', ['import'], $task,
['TASKRC' => $this->configs['taskrc'],'TASKDATA' => $this->configs['taskdata']]);
$this->logger->info($output);
}
}

View File

@ -0,0 +1,31 @@
<?php
namespace Aerex\BaikalStorage;
use PHPUnit\Framework\TestCase;
use Aerex\BaikalStorage\Configs\ConfigBuilder;
class ConfigTest extends TestCase {
/**
* @var \PHPUnit_Framework_MockObject_MockObject
* */
public $mockConfigBuilder;
public function testLoggerConfigs() {
$configs = new ConfigBuilder(__DIR__ . '/Fixtures/LoggerConfig.yaml');
$contents = $configs->loadYaml();
$this->assertEquals(sizeof($contents), 1);
$this->assertArrayHasKey('logger', $contents, 'config missing logger property');
$this->assertArrayHasKey('file', $contents['logger'], 'config missing logger.file property');
$this->assertEquals($contents['logger']['file'], '/home/user/logger.yaml');
$this->assertArrayHasKey('level', $contents['logger'], 'config missing logger.level property');
$this->assertEquals($contents['logger']['level'], 'ERROR', 'ERROR is not set as default logger level');
$this->assertArrayHasKey('enabled', $contents['logger'], 'config missing logger.enabled property');
$this->assertTrue($contents['logger']['enabled']);
}
}

View File

@ -0,0 +1,2 @@
logger:
file: /home/user/logger.yaml

View File

@ -0,0 +1,7 @@
logger:
file: /home/aerex/baikal-storage-plugin.log
level: DEBUG
taskwarrior:
taskdata: /home/aerex/.task
taskrc: /home/aerex/.taskrc
project_tag_suffix: project_

View File

@ -1,4 +0,0 @@
taskwarrior:
taskdata: '/home/user/.task'
taskrc: '~/home/user/.taskrc'
project_tag_suffix: 'project_'

View File

@ -5,7 +5,6 @@ namespace Aerex\BaikalStorage;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
use Aerex\BaikalStorage\AbstractConsole; use Aerex\BaikalStorage\AbstractConsole;
use Aerex\BaikalStorage\Configs\ConfigBuilder; use Aerex\BaikalStorage\Configs\ConfigBuilder;
use Aerex\BaikalStorage\Configs\TaskwarriorConfig;
use Aerex\BaikalStorage\Storages\Taskwarrior; use Aerex\BaikalStorage\Storages\Taskwarrior;
use Aerex\BaikalStorage\Storages\IStorage; use Aerex\BaikalStorage\Storages\IStorage;
use Sabre\VObject\Component\VCalendar as Calendar; use Sabre\VObject\Component\VCalendar as Calendar;
@ -21,18 +20,18 @@ class StorageManagerTest extends TestCase {
public $mockConfigBuilder; public $mockConfigBuilder;
function setUp() { protected function setUp(): void {
$this->mockConfigBuilder = $this->getMockBuilder(ConfigBuilder::class) $this->mockConfigBuilder = $this->getMockBuilder(ConfigBuilder::class)
->setMethods(['readContent']) ->setMethods(['readContent'])
->setConstructorArgs(['']) ->setConstructorArgs([''])
->getMock(); ->getMock();
$this->mockConsole = $this->createMock(AbstractConsole::class); $this->mockConsole = $this->createMock(AbstractConsole::class);
$this->mockStorage = $this->createMock(IStorage::class); $this->mockStorage = $this->createMock(Taskwarrior::class);
} }
public function testAddTaskwarriorStorage() { public function testAddTaskwarriorStorage() {
$configs = ['taskwarrior' => ['taskrc' => '', 'taskdata' => '']]; $configs = ['taskwarrior' => ['taskrc' => '', 'taskdata' => '']];
$tw = new Taskwarrior($this->mockConsole, '', $configs); $tw = new Taskwarrior($this->mockConsole, $configs);
$manager = new StorageManager($this->mockConfigBuilder); $manager = new StorageManager($this->mockConfigBuilder);
$manager->addStorage(Taskwarrior::NAME, $tw); $manager->addStorage(Taskwarrior::NAME, $tw);
$storages = $manager->getStorages(); $storages = $manager->getStorages();

View File

@ -14,13 +14,13 @@ class TaskwarriorTest extends TestCase {
* */ * */
private $mockConsole; private $mockConsole;
function setUp() { protected function setUp(): void {
$this->mockConsole = $this->createMock(AbstractConsole::class); $this->mockConsole = $this->createMock(AbstractConsole::class);
} }
public function testVObjectToTask() { public function testVObjectToTask() {
$configs = ['taskwarrior' => ['taskrc' => '', 'taskdata' => '']]; $configs = ['taskwarrior' => ['taskrc' => '', 'taskdata' => ''], 'logger' => ['file' => '', 'level'=> 'DEBUG', 'enabled' => true]];
$this->taskwarrior = new Taskwarrior($this->mockConsole, '', $configs); $this->taskwarrior = new Taskwarrior($this->mockConsole, $configs);
$vcalendar = new Calendar([ $vcalendar = new Calendar([
'VTODO' => [ 'VTODO' => [
'SUMMARY' => 'Finish project', 'SUMMARY' => 'Finish project',
@ -33,7 +33,6 @@ class TaskwarriorTest extends TestCase {
'RRULE' => 'FREQ=MONTHLY' 'RRULE' => 'FREQ=MONTHLY'
] ]
]); ]);
echo $vcalendar->VTODO->RRULE->getJsonValue()[0]['freq'];
$task = $this->taskwarrior->vObjectToTask($vcalendar->VTODO); $task = $this->taskwarrior->vObjectToTask($vcalendar->VTODO);
$this->assertArrayHasKey('uid', $task, 'task should have a uid'); $this->assertArrayHasKey('uid', $task, 'task should have a uid');