lingotek.dashboard.inc in Lingotek Translation 7.4
Same filename and directory in other branches
Lingotek Dashboard.
File
lingotek.dashboard.incView source
<?php
/**
* @file
* Lingotek Dashboard.
*/
/**
* Tab: Dashboard - The main Lingotek dashboard page.
*/
function lingotek_dashboard() {
lingotek_is_module_setup();
$account = LingotekAccount::instance();
//remove?
if (lingotek_is_config_missing() === TRUE) {
$output = array();
// Check the login ID to see if this is a Lingopoint user, if so, provide information about setting up their oauth keys.
$login_id = variable_get('lingotek_login_id', 'community_admin');
if ($login_id != 'community_admin') {
drupal_set_message(t('The Lingotek Translation module is not fully configured.'), 'warning');
$output['instructions'] = array(
'#type' => 'markup',
'#markup' => theme('item_list', array(
'title' => 'Complete configuration by performing the following:',
'type' => 'ol',
'items' => array(
array(
'data' => t('Login to the') . ' ' . l(t('Lingotek account dashboard'), LINGOTEK_API_SERVER, array(
'attributes' => array(
'target' => '_blank',
),
)),
),
array(
'data' => t('Select the <i>Community > Integrations</i> menu item'),
),
array(
'data' => t('Setup an <i>Inbound OAuth integration</i> method to create an <i>OAuth Key</i> and <i>OAuth Secret</i>'),
),
array(
'data' => t('Copy and paste the <i>OAuth Key</i> and <i>OAuth Secret</i> that were created into the') . ' ' . l(t('Lingotek Drupal module settings'), LINGOTEK_MENU_LANG_BASE_URL . '/settings', array(
'query' => array(
'edit_connection' => 1,
),
)),
),
),
)),
);
}
else {
// Show the standard misconfiguration message.
drupal_set_message(t('The Lingotek Translation module is not fully configured. To complete setup, run the') . ' ' . l(t('Lingotek Configuration Wizard'), 'admin/config/lingotek/setup'), 'warning');
}
$output[] = lingotek_support_footer();
return $output;
}
// As a backup fail safe, the dashboard loading should clear the sync flag if its still set.
if (isset($_SESSION['lingotek_sync_in_progress'])) {
unset($_SESSION['lingotek_sync_in_progress']);
}
return array(
'dashboard' => array(
'#type' => 'markup',
'#markup' => '<div id="dashboard"></div>',
),
'script' => array(
'#type' => 'markup',
'#markup' => lingotek_get_dashboard_code(),
),
);
}
// END: lingotek_dashboard()
/**
* Generates the code for the embedded Javascript dashboard.
*/
function lingotek_get_dashboard_code() {
global $base_url;
$output = '';
$guid = lingotek_get_guid();
// 16 char string
$totals = lingotek_get_target_status();
$script = '
<script src="' . LINGOTEK_GMC_SERVER . '/js/lingotek.min.js"></script>
<script>
require(["lingotek"],function(lingotek){
var containerId = "dashboard";
var config = {
// lingotek
"community": "%s",
"oauth_key": "%s",
"oauth_secret": "%s",
"external_id": "%s",
"tm_vault_id": "%s",
"workflow_id": "%s",
"project_id": "%s",
"first_name": "%s",
"last_name": "%s",
"email": "%s",
// cms
"cms_site_id": "%s",
"cms_site_key": "%s",
"cms_site_name": "%s",
"cms_type": "%s",
"cms_version": "%s",
"cms_tag": "%s",
"module_version": %s,
"endpoint_url": "%s",
"sync_url": "%s",
// data
"source_language":%s ,
"localization_languages": %s,
"target_languages": %s
};
lingotek.dashboard(containerId,config);
});
</script>
';
$endpoint = $base_url . '/lingotek/target';
//(variable_get('clean_url', 0) ? '' : '?q=') . '/lingotek/target';
$sync_url = $base_url . '/' . LINGOTEK_MENU_LANG_BASE_URL . '/manage/sync';
//(variable_get('clean_url', 0) ? '' : '?q=') . '/' . LINGOTEK_MENU_LANG_BASE_URL . '/sync';
$output .= sprintf($script, variable_get('lingotek_community_identifier', ''), variable_get('lingotek_oauth_consumer_id', ''), variable_get('lingotek_oauth_consumer_secret', ''), variable_get('lingotek_login_id', ''), variable_get('lingotek_vault', ''), variable_get('lingotek_workflow', ''), variable_get('lingotek_project', ''), variable_get('lingotek_activation_first_name', ''), variable_get('lingotek_activation_last_name', ''), variable_get('lingotek_activation_email', ''), $guid, url('<front>', array(
'absolute' => TRUE,
)), variable_get('site_name', 'Unidentified Drupal Site'), 'Drupal', VERSION, variable_get('install_profile', ''), json_encode(lingotek_get_module_info('version')), $endpoint, $sync_url, lingotek_get_source_language_json(), json_encode(Lingotek::availableLanguageTargets('lingotek_locale', TRUE)), json_encode($totals));
return $output;
}
// END: lingotek_get_dashboard_code()
/**
* Ajax Command Processing for the Lingotek dashboard.
*/
function lingotek_dashboard_command_ajax() {
$parameters = array();
$message = 'Not doing anything.';
$method = $_SERVER['REQUEST_METHOD'];
$response = array();
// 1. Update a Target Language (Initiate a Machine Translation Batch)
if ($method == 'PUT') {
// Initiate Machine Translation
$message = 'PUT: Initiate Machine Translation';
parse_str(file_get_contents("php://input"), $parameters);
$type = $parameters['type'];
$lingotek_locale = $parameters['code'];
$response = array(
'code' => $lingotek_locale,
'active' => TRUE,
'docs' => '0',
'pending' => '0',
'current' => '0',
);
// Launch the machine translation process!
}
// END: PUT
// 2. Add/Insert Target Language
if ($_POST) {
$message = 'POST: Insert a new Target Language';
$lingotek_locale = $_POST['code'];
$parameters = $_POST;
if (strlen($lingotek_locale) > 1) {
// Adds the language locale to the local list of languages and to the Lingotek project (via the API).
$add = lingotek_add_target_language($lingotek_locale);
$response = lingotek_get_target_status($lingotek_locale);
$response['success'] = $add;
}
}
// END: POST
// 3. Remove/Delete Target Language
if ($method == 'DELETE') {
// Initiate Language Delete
parse_str(file_get_contents("php://input"), $parameters);
$lingotek_locale = $parameters['code'];
$message = t('DELETE: Remove language (@code)', array(
'@code' => $lingotek_locale,
));
// Removes the language to the local list of languages we do translation for, and also removes the target language from the Lingotek project.
$delete = lingotek_delete_target_language($lingotek_locale);
// Mark this language as Active => False
$response = array(
'code' => $lingotek_locale,
'active' => FALSE,
'success' => $delete,
);
// Format: {'code':'es','active':'FALSE','success':TRUE}
}
// END: DELETE
// 4. Retrieve the Target Languages and Status
if ($method == 'GET') {
// Retrieve the Target Languages and Status
$message = 'GET: Retrieve the Target Language(s) and Status';
$parameters = $_GET;
$response = isset($_GET['code']) ? lingotek_get_target_status($_GET['code']) : lingotek_get_target_status();
}
// END: GET
if ($method == 'PUT') {
$commands = array();
ajax_deliver(array(
'#type' => 'ajax',
'#commands' => $commands,
));
}
else {
//lingotek_json_output_cors(array('response' => $response, 'message' => $message, 'data' => $data, 'method' => $method ));
$general = array(
'message' => $message,
);
$full_response = array_merge($general, $response);
if ($method !== 'GET') {
//skip logging GETS (since they occur lots)
LingotekLog::info('<h2>Target - @method</h21>
<h3>Parameters:</h3>
<div>!parameters</div>
<h3>Response:</h3>
<div>!response</div>
', array(
'@method' => $method,
'!parameters' => $parameters,
'!response' => $response,
), 'endpoint');
}
return lingotek_json_output_cors($full_response);
}
}
/**
* Returns an array that maps a content_type to one (and just 1) of its translated fields.
* We can then use that array to track how many nodes have been translated.
*/
function lingotek_get_type_field_mapping($node_type = NULL) {
$type_field_mapping = array();
// Keep as an array, cause you have to loop it for each content type time you do a count.
$node_types = lingotek_translatable_node_types();
// These are the node types marked for translation. I need 1 field from each to count off of.
$node_fields = lingotek_translatable_node_field_details();
// These are the fields that are translated.
//debug( $node_types );
//debug( $node_fields );
// Match a translated node_type up with a translated node_field, and grab the db_table where its data is stored so we can query off of it.
foreach ($node_types as $type) {
//debug( $type );
// Look for that type in one of the field bundles.
foreach ($node_fields as $field) {
//debug( $field );
// Is this type, listed in the bundles for this field? ie: does this type, use this field?
if (in_array($type, $field['bundles'])) {
//debug( 'The Type: ' . $type . ' Uses the field: ' . $field['machine_name'] );
$type_field_mapping[$type] = $field['db_table'];
// Get a db table for this field that we can do a language count off of it.
break;
// Only need one field, bail on this loop.
}
}
// END: loop fields
}
// END: loop types
return $type_field_mapping;
}
// END: lingotek_get_type_field_mapping()
/**
* Outputs the language code with page count in json format. Supplied to the dashboard.
* Output Format (example): {'code':'en_US','docs':'500'}
*/
function lingotek_get_source_language_json() {
$data = array();
$source_language = lingotek_get_source_language();
$data['code'] = Lingotek::convertDrupal2Lingotek($source_language);
$data['edited'] = LingotekSync::getCountByStatus(LingotekSync::STATUS_EDITED);
$data['pending'] = LingotekSync::getCountByStatus(LingotekSync::STATUS_PENDING);
$data['ready'] = LingotekSync::getCountByStatus(LingotekSync::STATUS_READY);
$data['current'] = LingotekSync::getCountByStatus(LingotekSync::STATUS_CURRENT);
$data['docs'] = $data['edited'] + $data['pending'] + $data['ready'] + $data['current'];
return json_encode($data);
}
/**
* Generates Lingotek GUID for this installation.
*/
function lingotek_get_guid() {
$guid = variable_get('lingotek_guid', '');
if ($guid == '') {
$guid = substr(hash('sha256', drupal_get_hash_salt()), 0, 16);
variable_set('lingotek_guid', $guid);
}
return $guid;
}
/**
* Get the status of the target given by locale
*/
function lingotek_get_target_status($lingotek_locale_requested = NULL) {
$response = array();
$target_languages = Lingotek::availableLanguageTargets(NULL, FALSE);
// print("locale: ".$lingotek_locale."\n"); print("count: ". implode(', ',array_keys($target_languages)).' ['.count($target_languages)."]\n");
// If we get a parameter, only return that language. Otherwise return all the codes (dont return the source language).
// Otherwise Return a List of all the Active Languages
foreach ($target_languages as $target) {
if (!is_null($lingotek_locale_requested) && $lingotek_locale_requested != $target->lingotek_locale) {
continue;
}
$drupal_language_code = $target->language;
$lingotek_locale = $target->lingotek_locale;
$edited = LingotekSync::getTargetCountByStatus(LingotekSync::STATUS_EDITED, $lingotek_locale);
$pending = LingotekSync::getTargetCountByStatus(LingotekSync::STATUS_PENDING, $lingotek_locale);
$ready = LingotekSync::getTargetCountByStatus(LingotekSync::STATUS_READY, $lingotek_locale);
$current = LingotekSync::getTargetCountByStatus(LingotekSync::STATUS_CURRENT, $lingotek_locale);
$total = $edited + $pending + $ready + $current;
$target_status = array(
'code' => $lingotek_locale,
// Return this language code as the Lingotek language code.
'dcode' => $drupal_language_code,
'active' => intval($target->lingotek_enabled),
//lingotek_enabled,
'enabled' => intval($target->enabled),
// drupal enabled
'docs' => $total,
'pending' => $pending,
'ready' => $ready,
'edited' => $edited,
'current' => $current,
);
if ($lingotek_locale_requested == $target->lingotek_locale) {
$response = $target_status;
}
else {
$response[] = $target_status;
}
}
return $response;
}
Functions
Name | Description |
---|---|
lingotek_dashboard | Tab: Dashboard - The main Lingotek dashboard page. |
lingotek_dashboard_command_ajax | Ajax Command Processing for the Lingotek dashboard. |
lingotek_get_dashboard_code | Generates the code for the embedded Javascript dashboard. |
lingotek_get_guid | Generates Lingotek GUID for this installation. |
lingotek_get_source_language_json | Outputs the language code with page count in json format. Supplied to the dashboard. Output Format (example): {'code':'en_US','docs':'500'} |
lingotek_get_target_status | Get the status of the target given by locale |
lingotek_get_type_field_mapping | Returns an array that maps a content_type to one (and just 1) of its translated fields. We can then use that array to track how many nodes have been translated. |