Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
7c972550ff | ||
|
5165567e63 | ||
|
ed4dc009fd | ||
|
a0b3e9548b |
@ -12,7 +12,7 @@ composer require aerex/baikal-storage-plugin
|
||||
You can use the CLI to help you generate a config file or use the example configuration provided in the project. Make sure the file is *writable* by your webserver (e.g Apache, Nginx).
|
||||
|
||||
### Use the CLI
|
||||
Run the command `./vendor/bin/baikalstorage` and follow the instructions
|
||||
Run the command `./vendor/baikalstorage` and follow the instructions
|
||||
|
||||
### Manual
|
||||
Copy the `example-config.yaml` file and rename it to `config.yaml`.
|
||||
|
@ -12,7 +12,7 @@
|
||||
"repositories": [
|
||||
{
|
||||
"type": "vcs",
|
||||
"url": "https://github.com/Aerex/baikal-storage-plugin"
|
||||
"url": "https://git.aerex.me/Aerex/baikal-storage-plugin"
|
||||
}
|
||||
],
|
||||
"bin": [
|
||||
@ -20,14 +20,14 @@
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.5",
|
||||
"sabre/dav" : "~4.1.4",
|
||||
"sabre/vobject": "^4.2.1",
|
||||
"sabre/dav" : "~4.1.0",
|
||||
"sabre/vobject": "^4.0",
|
||||
"nesbot/carbon": "^2.0.0",
|
||||
"laminas/laminas-validator": "^2.13",
|
||||
"laminas/laminas-stdlib": "^3.2",
|
||||
"psr/container": "^1.0",
|
||||
"symfony/config": "3.4|^4.0|^5.0",
|
||||
"symfony/process": "^3.4|^4.0|^5.0",
|
||||
"symfony/config": "3.4",
|
||||
"symfony/process": "^3.4",
|
||||
"monolog/monolog": "^2.0",
|
||||
"symfony/yaml": "~3.0|~4.0",
|
||||
"symfony/console": "^3.4|^4.0|^5.0"
|
||||
|
@ -22,12 +22,7 @@ class CreateConfigFileCommand extends Command {
|
||||
|
||||
public function addtaskwarriorConfig() {
|
||||
$configs = [];
|
||||
$taskrcQuestion = new Question('Where is the location for the taskrc file?');
|
||||
$self = $this;
|
||||
$taskrcQuestion->setAutocompleterCallback(function(string $input) use ($self) {
|
||||
return $self->autocompleteFilePathCallback($input);
|
||||
});
|
||||
$filePath = $this->io->askQuestion($taskrcQuestion);
|
||||
$filePath = $this->io->askQuestion(new Question('Where is the location for the taskrc file?'));
|
||||
$taskrcFilePath = $filePath . '/.taskrc';
|
||||
if (!file_exists($taskrcFilePath)) {
|
||||
throw new \RuntimeException("The taskrc file at $taskrcFilePath does not exist");
|
||||
@ -75,10 +70,7 @@ class CreateConfigFileCommand extends Command {
|
||||
|
||||
// TODO: move create config file code block to function
|
||||
$question = new Question('Where to create `config.yaml` configuration file?');
|
||||
$self = $this;
|
||||
$question->setAutocompleterCallback(function(string $input) use ($self) {
|
||||
return $self->autocompleteFilePathCallback($input);
|
||||
});
|
||||
$question->setAutocompleterCallback($this->autocompleteFilePathCallback);
|
||||
$filePath = $this->io->askQuestion($question);
|
||||
|
||||
try {
|
||||
@ -133,14 +125,7 @@ class CreateConfigFileCommand extends Command {
|
||||
$this->configs['general'] = [];
|
||||
if ($this->io->confirm('Enable logging?')) {
|
||||
$this->configs['general']['logger'] = [];
|
||||
|
||||
$logFileQuestion = new Question('Where to create log file?');
|
||||
$self = $this;
|
||||
$logFileQuestion->setAutocompleterCallback(function(string $input) use ($self) {
|
||||
return $self->autocompleteFilePathCallback($input);
|
||||
});
|
||||
$logFilePath = $this->io->askQuestion($logFileQuestion);
|
||||
|
||||
$logFilePath = $this->io->askQuestion(new Question('Where to create log file?'));
|
||||
$this->configs['general']['logger']['file'] = $this->verifyAndCreateFile($logFilePath, CreateConfigFileCommand::$LOGGER_FILE_NAME);
|
||||
|
||||
$logLevelChoiceQuestion = new ChoiceQuestion('Log level (defaults to ERROR)', array_keys(Monolog::getLevels()), 4);
|
||||
|
@ -21,9 +21,9 @@ class ConfigBuilder implements ConfigurationInterface {
|
||||
}
|
||||
|
||||
public function getConfigTreeBuilder() {
|
||||
$treeBuilder = new TreeBuilder('configs', 'array');
|
||||
$rootNode = $treeBuilder->getRootNode();
|
||||
$ref = $rootNode->children()
|
||||
$treeBuilder = new TreeBuilder();
|
||||
$rootNode = $treeBuilder->root('configs');
|
||||
$ref = $rootNode->children()
|
||||
->arrayNode('general')
|
||||
->children()
|
||||
->arrayNode('logger')
|
||||
|
@ -47,12 +47,11 @@ class Plugin extends ServerPlugin {
|
||||
function __construct($configFile){
|
||||
$this->rawConfigs = $this->buildConfigurations($configFile);
|
||||
$this->storageManager = new StorageManager($this->rawConfigs);
|
||||
$this->logger = new Logger($this->rawConfigs, 'BaikalStorage');
|
||||
$this->initializeStorages($this->rawConfigs);
|
||||
}
|
||||
|
||||
private function getDisplayName($path) {
|
||||
// Remove filepath
|
||||
// Remove filepath (e.g Remove xxxx.ics from calendars/collection_name/xxxx.ics)
|
||||
$urlParts = explode('/', $path);
|
||||
$calendarUrl = implode('/', array_slice($urlParts, 0, sizeof($urlParts)-1));
|
||||
|
||||
@ -308,3 +307,4 @@ class Plugin extends ServerPlugin {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -22,10 +22,6 @@ class StorageManager {
|
||||
$this->configs = $configs;
|
||||
}
|
||||
|
||||
public function getStorages() {
|
||||
return $this->storages;
|
||||
}
|
||||
|
||||
public function fromStorageSource(Calendar $calendar) {
|
||||
if (!isset($this->configs)) {
|
||||
throw new \Exception('StorageManager was not initialize or configs are not defined');
|
||||
@ -38,6 +34,9 @@ class StorageManager {
|
||||
return false;
|
||||
}
|
||||
|
||||
public function getStorages() {
|
||||
return $this->storages;
|
||||
}
|
||||
|
||||
public function getConfigs() {
|
||||
return $this->configs;
|
||||
@ -73,3 +72,4 @@ class StorageManager {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -11,3 +11,4 @@ interface IStorage {
|
||||
public function getConfigBrowser();
|
||||
public function updateConfigs($postData);
|
||||
}
|
||||
|
||||
|
@ -179,7 +179,6 @@ class Taskwarrior implements IStorage {
|
||||
if (!isset($c->VTODO)){
|
||||
throw new \Exception('Calendar event does not contain VTODO');
|
||||
}
|
||||
$this->logger->info(sprintf('Executing on calendar %s', $displayname));
|
||||
$this->logger->info(json_encode($c->jsonSerialize()));
|
||||
$this->refresh();
|
||||
$task = $this->vObjectToTask($c->VTODO, $displayname);
|
||||
@ -207,7 +206,6 @@ class Taskwarrior implements IStorage {
|
||||
}
|
||||
$task = $this->tasks[(string)$uid];
|
||||
if (isset($task) && $task['status'] !== 'deleted') {
|
||||
$this->logger->info(sprintf('Deleting iCal %s from taskwarrior', $uid));
|
||||
$uuid = $task['uuid'];
|
||||
$this->logger->info(
|
||||
sprintf('Executing TASKRC = %s TASKDATA = %s task delete %s', $this->configs['taskrc'], $this->configs['taskdata'], $uuid)
|
||||
@ -227,5 +225,6 @@ class Taskwarrior implements IStorage {
|
||||
$this->logger->error($e->getTraceAsString());
|
||||
throw $e;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user