#!/usr/bin/env php
<?php
use Graceland\SafeInCloud\ApiClient;
use Graceland\SafeInCloud\Commands\AccountCommand;
use Graceland\SafeInCloud\Commands\AuthenticateCommand;
use Graceland\SafeInCloud\Commands\LoginCommand;
use Symfony\Component\Console\Application;

foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
    if (file_exists($file)) {
        define('COMPOSER_INSTALL', $file);
        break;
    }
}

unset($file);

if (!defined('COMPOSER_INSTALL')) {
    fwrite(STDERR,
        'You need to set up the project dependencies using the following commands:' . PHP_EOL .
        'wget http://getcomposer.org/composer.phar' . PHP_EOL .
        'php composer.phar install' . PHP_EOL
    );
    die(1);
}

require COMPOSER_INSTALL;

$client  = ApiClient::create();
$console = new Application('SafeInCloud Password Manager', '1.0-dev');
$console->add(new AccountCommand($client));
$console->add(new AuthenticateCommand($client));
$console->add(new LoginCommand($client));
$console->run();
