View source
<?php
namespace Drupal\lingotek_test;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\lingotek\Exception\LingotekApiException;
use Drupal\lingotek\LanguageLocaleMapperInterface;
use Drupal\lingotek\LingotekInterface;
use Drupal\lingotek\LingotekProfileInterface;
use Drupal\lingotek\Remote\LingotekApiInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class LingotekFake implements LingotekInterface {
protected $api;
protected $config;
public function __construct(LingotekApiInterface $api, LanguageLocaleMapperInterface $language_locale_mapper, ConfigFactoryInterface $config) {
$this->api = $api;
$this->languageLocaleMapper = $language_locale_mapper;
$this->config = $config
->getEditable('lingotek.settings');
}
public static function create(ContainerInterface $container) {
return new static($container
->get('lingotek.api'), $container
->get('lingotek.language_locale_mapper'), $container
->get('config.factory'));
}
public function get($key) {
switch ($key) {
case 'account':
if (\Drupal::state()
->get('lingotek_fake.logged_in', FALSE) === FALSE || \Drupal::state()
->get('lingotek_fake.setup_completed', FALSE) === FALSE) {
return [];
}
else {
$host = \Drupal::request()
->getSchemeAndHttpHost();
return [
'host' => $host,
'sandbox_host' => $host,
'authorize_path' => $this
->get('account.authorize_path'),
'default_client_id' => $this
->get('account.default_client_id'),
'access_token' => 'test_token',
'login_id' => 'testUser@example.com',
'use_production' => TRUE,
];
}
case 'account.login_id':
return 'testUser@example.com';
case 'account.sandbox_host':
case 'account.host':
return \Drupal::request()
->getSchemeAndHttpHost() . \Drupal::request()
->getBasePath();
case 'account.authorize_path':
if (\Drupal::state()
->get('authorize_no_redirect', FALSE)) {
return '/lingofake/authorize_no_redirect';
}
return '/lingofake/authorize';
case 'account.default_client_id':
return 'test_default_client_id';
case 'default.community':
return \Drupal::config('lingotek.settings')
->get($key) ? \Drupal::config('lingotek.settings')
->get($key) : 'test_community';
case 'default.project':
return \Drupal::config('lingotek.settings')
->get($key) ? \Drupal::config('lingotek.settings')
->get($key) : 'test_project';
case 'default.vault':
return \Drupal::config('lingotek.settings')
->get($key) ? \Drupal::config('lingotek.settings')
->get($key) : 'test_vault';
case 'default.workflow':
return \Drupal::config('lingotek.settings')
->get($key) ? \Drupal::config('lingotek.settings')
->get($key) : 'test_workflow';
case 'profile':
return [
[
'id' => 1,
'name' => 'automatic',
'auto_upload' => TRUE,
'auto_download' => TRUE,
],
];
}
}
public function set($key, $value) {
\Drupal::configFactory()
->getEditable('lingotek.settings')
->set($key, $value)
->save();
}
public function getAccountInfo() {
\Drupal::state()
->set('lingotek_fake.setup_completed', TRUE);
return [
'id' => 'test',
'type' => 'token',
'client_id' => 'test_default_client_id',
'user_id' => 'testUser',
'login_id' => 'testUser@example.com',
'expires_at' => -1,
];
}
public function getVaults($force = FALSE) {
return [
'test_vault' => 'Test vault',
'test_vault2' => 'Test vault2',
];
}
public function getWorkflows($force = FALSE) {
return [
'test_workflow' => 'Test workflow',
'test_workflow2' => 'Test workflow 2',
];
}
public function getCommunities($force = FALSE) {
return [
'test_community' => 'Test community',
'test_community2' => 'Test community 2',
];
}
public function getProjects($force = FALSE) {
return [
'test_project' => 'Test project',
'test_project2' => 'Test project 2',
];
}
public function getProject($project_id) {
return [
'properties' => [
'creation_date' => 1284940800000,
'workflow_id' => 'test_workflow',
'callback_url' => '',
'title' => 'Test project',
'community_id' => 'test_community',
'id' => 'test_project',
],
];
}
public function setProjectCallBackUrl($project_id, $callback_url) {
return TRUE;
}
public function getResources($force = FALSE) {
return [
'project' => $this
->getProjects($force),
'vault' => $this
->getVaults($force),
'community' => $this
->getCommunities($force),
'workflow' => $this
->getWorkflows($force),
];
}
public function getDefaults() {
return [
'project' => 'test_project',
'vault' => 'test_vault',
'community' => 'test_community',
'workflow' => 'test_workflow',
];
}
public function uploadDocument($title, $content, $locale, $url = NULL, LingotekProfileInterface $profile = NULL) {
if (\Drupal::state()
->get('lingotek.must_error_in_upload', FALSE)) {
throw new LingotekApiException();
}
\Drupal::state()
->set('lingotek.uploaded_title', $title);
\Drupal::state()
->set('lingotek.uploaded_content', $content);
\Drupal::state()
->set('lingotek.uploaded_locale', $locale);
\Drupal::state()
->set('lingotek.uploaded_url', $url);
\Drupal::state()
->set('lingotek.used_profile', $profile ? $profile
->id() : NULL);
$count = \Drupal::state()
->get('lingotek.uploaded_docs', 0);
$doc_id = 'dummy-document-hash-id';
if ($count > 0) {
$doc_id .= '-' . $count;
}
++$count;
\Drupal::state()
->set('lingotek.uploaded_docs', $count);
$timestamps = \Drupal::state()
->get('lingotek.upload_timestamps', []);
$timestamps[$doc_id] = REQUEST_TIME;
\Drupal::state()
->set('lingotek.upload_timestamps', $timestamps);
return $doc_id;
}
public function updateDocument($doc_id, $content, $url = NULL, $title = NULL) {
if (\Drupal::state()
->get('lingotek.must_error_in_upload', FALSE)) {
throw new LingotekApiException();
}
\Drupal::state()
->set('lingotek.uploaded_content', $content);
\Drupal::state()
->set('lingotek.uploaded_content_url', $url);
\Drupal::state()
->set('lingotek.uploaded_content_title', $title);
$timestamps = \Drupal::state()
->get('lingotek.upload_timestamps', []);
$timestamps[$doc_id] = REQUEST_TIME;
\Drupal::state()
->set('lingotek.upload_timestamps', $timestamps);
return TRUE;
}
public function documentImported($doc_id) {
return TRUE;
}
public function addTarget($doc_id, $locale, LingotekProfileInterface $profile = NULL) {
\Drupal::state()
->set('lingotek.added_target_locale', $locale);
\Drupal::state()
->set('lingotek.used_profile', $profile ? $profile
->id() : NULL);
return TRUE;
}
public function getDocumentStatus($doc_id) {
return \Drupal::state()
->get('lingotek.document_status_completion', TRUE);
}
public function getDocumentTranslationStatus($doc_id, $locale) {
\Drupal::state()
->set('lingotek.checked_target_locale', $locale);
return \Drupal::state()
->get('lingotek.document_completion', TRUE);
}
public function downloadDocument($doc_id, $locale) {
\Drupal::state()
->set('lingotek.downloaded_locale', $locale);
$type = \Drupal::state()
->get('lingotek.uploaded_content_type', 'node');
$path = drupal_get_path('module', 'lingotek') . '/tests/modules/lingotek_test/document_responses/' . $type . '.json';
$input = file_get_contents($path);
return json_decode($input, TRUE);
}
public function getUploadedTimestamp($doc_id) {
$timestamps = \Drupal::state()
->get('lingotek.upload_timestamps', []);
$timestamp = isset($timestamps[$doc_id]) ? $timestamps[$doc_id] : NULL;
return $timestamp;
}
public function deleteDocument($doc_id) {
$deleted_docs = \Drupal::state()
->get('lingotek.deleted_docs', []);
$deleted_docs[] = $doc_id;
\Drupal::state()
->set('lingotek.deleted_docs', $deleted_docs);
return TRUE;
}
public function getLocales() {
return [
'es-ES',
'de-AT',
'de-DE',
];
}
public function getDocumentTranslationStatuses($doc_id) {
$statuses = \Drupal::state()
->get('lingotek.document_completion_statuses', []);
if (!empty($statuses)) {
return $statuses;
}
if (\Drupal::state()
->get('lingotek.document_completion', TRUE)) {
return [
'es-MX' => 100,
'es-ES' => 100,
'de-AT' => 100,
'de-DE' => 100,
];
}
return [
'es-MX' => 80,
'es-ES' => 80,
'de-AT' => 80,
'de-DE' => 80,
];
}
}