*/ /** * @package languages */ class BitLanguage extends BitBase { // list of available (non-disabled) languages var $mLanguageList; var $mLanguage; function BitLanguage () { BitBase::BitBase(); global $gBitSystem; # TODO - put '@' here due to beta1->beta2 upgrades - wolff_borg $this->mLanguageList = $this->listLanguages(); if (isset($_SESSION['bitlanguage'])) { // users not logged that change the preference $this->mLanguage = $_SESSION['bitlanguage']; } elseif (isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) && $gBitSystem->isFeatureActive( 'browser_languages' )) { // Get supported languages if( $browserLangs = split( ',', preg_replace('/;q=[0-9.]+/', '', $_SERVER['HTTP_ACCEPT_LANGUAGE']) ) ) { foreach( $browserLangs as $bl ) { if( !empty( $this->mLanguageList[$bl] ) ) { $this->setLanguage( $bl ); break; } elseif( strpos( $bl, '-' ) ) { $baseLang = substr( $bl, 0, 2 ); if( !empty( $this->mLanguageList[$baseLang] ) ) { $this->setLanguage( $baseLang ); break; } } } } } if( empty( $this->mLanguage ) ) { $this->mLanguage = $gBitSystem->getPreference('bitlanguage', 'en'); } } function getLanguage() { return( $this->mLanguage ); } function setLanguage( $pLangCode ) { $this->mLanguage = $pLangCode; } function verifyLanguage( &$pParamHash ) { $langs = $this->listLanguages(); if( empty( $pParamHash['lang_code'] ) || strlen( $pParamHash['lang_code'] ) < 2 ) { $this->mErrors['lang_code'] = tra( 'The language code must be at least 2 characters.' ); } elseif( !empty( $langs[$pParamHash['lang_code']] ) && empty( $pParamHash['update_lang_code'] ) ) { $this->mErrors['lang_code'] = tra( 'This language code is already used by ' ).$langs[$pParamHash['lang_code']]['native_name']; } if( empty( $pParamHash['native_name'] ) ) { $this->mErrors['native_name'] = 'You must provide the native language name'; } if( !isset( $pParamHash['english_name'] ) ) { $pParamHash['english_name'] = NULL; } return( count( $this->mErrors ) === 0 ); } function storeLanguage( $pParamHash ) { if( $this->verifyLanguage( $pParamHash ) ) { if( empty( $pParamHash['update_lang_code'] ) ) { $query = "INSERT INTO `".BIT_DB_PREFIX."i18n_languages` (`lang_code`,`english_name`,`native_name`) values (?,?,?)"; $result = $this->mDb->query( $query, array( $pParamHash['lang_code'], $pParamHash['english_name'], $pParamHash['native_name'] ) ); } else { $query = "UPDATE `".BIT_DB_PREFIX."i18n_languages` SET `lang_code`=?, `english_name`=?, `native_name`=? WHERE `lang_code`=?"; $result = $this->mDb->query( $query, array( $pParamHash['lang_code'], $pParamHash['english_name'], $pParamHash['native_name'], $pParamHash['update_lang_code'] ) ); } } return( count( $this->mErrors ) == 0 ); } function expungeLanguage( $pLangCode ) { if( !empty( $pLangCode ) ) { $this->mDb->StartTrans(); $query = "DELETE FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `lang_code`=?"; $result = $this->mDb->query( $query, array( $pLangCode ) ); $query = "DELETE FROM `".BIT_DB_PREFIX."i18n_languages` WHERE `lang_code`=?"; $result = $this->mDb->query( $query, array( $pLangCode ) ); $this->mDb->CompleteTrans(); } } function expungeMasterString( $pSourceHash ) { if( !empty( $pSourceHash ) ) { $this->mDb->StartTrans(); $query = "DELETE FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `source_hash`=?"; $result = $this->mDb->query( $query, array( $pSourceHash ) ); $query = "DELETE FROM `".BIT_DB_PREFIX."i18n_masters` WHERE `source_hash`=?"; $result = $this->mDb->query( $query, array( $pSourceHash ) ); $this->mDb->CompleteTrans(); return TRUE; } } function getImportedLanguages() { $ret = array(); if( $rs = $this->mDb->query( 'SELECT DISTINCT(`lang_code`) AS `lang_code` FROM `'.BIT_DB_PREFIX.'i18n_strings`' ) ) { $res = array(); while( !$rs->EOF ) { $res[] = $rs->fields['lang_code']; $rs->MoveNext(); } $langs = $this->listLanguages(); foreach( $res as $langCode ) { $ret[$langCode] = $langs[$langCode]; } } return $ret; } function listLanguages( $pListDisabled=TRUE, $pListOnlyImportable=FALSE ) { $whereSql = ''; $langs = array(); if( !$pListDisabled ) { $whereSql = " WHERE `is_disabled` IS NULL "; } $ret = $this->mDb->getAssoc( "SELECT il.`lang_code` AS `hash_key`, il.* FROM `".BIT_DB_PREFIX."i18n_languages` il $whereSql ORDER BY il.`lang_code`" ); if( !empty( $ret ) ) { foreach( array_keys( $ret ) as $langCode ) { if( $langCode != 'en' && !$this->isImportFileAvailable( $langCode ) && $pListOnlyImportable ) continue; $ret[$langCode]['translated_name'] = $this->translate( $ret[$langCode]['english_name'] ); $ret[$langCode]['full_name'] = $ret[$langCode]['native_name'].' ('.$this->translate( $ret[$langCode]['english_name'] ).', '.$langCode.')'; $langs[$langCode] = $ret[$langCode]; } } return $langs; } function verifyMastersLoaded() { // see if there is anything in the table $query = "SELECT COUNT(`source_hash`) FROM `".BIT_DB_PREFIX."i18n_masters`"; $count = $this->mDb->getOne($query); if( empty( $count ) ) { $this->importMasterStrings(); } } function masterStringExists( $pSourceHash ) { return( !empty( $this->mStrings['master'][$pSourceHash] ) ); } function searchMasterStrings( $pQuerySource ) { $query = "SELECT im.`source_hash` AS `hash_key`, `source`, `package`, im.`source_hash` FROM `".BIT_DB_PREFIX."i18n_masters` im WHERE UPPER( `source` ) LIKE ? ORDER BY im.`source`"; return( $this->mDb->getAssoc( $query, array( '%'.strtoupper( $pQuerySource ).'%' ) ) ); } function loadMasterStrings( $pSourceHash = NULL ) { $this->verifyMastersLoaded(); $bindVars = NULL; $whereSql = NULL; if( $pSourceHash ) { $whereSql = ' WHERE `source_hash`=? '; $bindVars = array( $pSourceHash ); } $query = "SELECT im.`source_hash` AS `hash_key`, `source`, `package`, im.`source_hash` FROM `".BIT_DB_PREFIX."i18n_masters` im $whereSql ORDER BY im.`source`"; $this->mStrings['master'] = $this->mDb->getAssoc( $query, $bindVars ); } function storeMasterString( $pParamHash ) { global $gBitSmarty; if( !empty( $gBitSmarty->mCompileRsrc ) ) { list($type, $location) = split( ':', $gBitSmarty->mCompileRsrc ); list($package, $file) = split( '/', $location ); } else { $package = NULL; } $this->mDb->StartTrans(); $newSourceHash = $this->getSourceHash( $pParamHash['new_source'] ); if( $this->masterStringExists( $newSourceHash ) ) { $oldCount = $this->mDb->getOne( "SELECT COUNT(`source_hash`) FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `source_hash`=?", array( $pParamHash['source_hash'] ) ); $newCount = $this->mDb->getOne( "SELECT COUNT(`source_hash`) FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `source_hash`=?", array( $newSourceHash ) ); if( $newCount ) { $this->mErrors['master'] = 'There was a conflict updating the master string. The new string already has translations entered.'; } else { // we have updated a master string to an existing master string $query = "UPDATE `".BIT_DB_PREFIX."i18n_strings` SET `source_hash`=?, `last_modified`=? WHERE `source_hash`=?"; $trans = $this->mDb->query($query, array( $newSourceHash, time(), $pParamHash['source_hash'] ) ); $query = "DELETE FROM `".BIT_DB_PREFIX."i18n_masters` WHERE `source_hash`=?"; $trans = $this->mDb->query($query, array( $pParamHash['source_hash'] ) ); } } elseif( $this->masterStringExists( $pParamHash['source_hash'] ) ) { $query = "UPDATE `".BIT_DB_PREFIX."i18n_strings` SET `source_hash`=?, `last_modified`=? WHERE `source_hash`=?"; $trans = $this->mDb->query($query, array( $newSourceHash, time(), $pParamHash['source_hash'] ) ); $query = "UPDATE `".BIT_DB_PREFIX."i18n_masters` SET `source_hash`=?, `source`=?, `created`=? WHERE `source_hash`=?"; $trans = $this->mDb->query($query, array( $newSourceHash, $pParamHash['new_source'], time(), $pParamHash['source_hash'] ) ); unset( $this->mStrings[$pParamHash['source_hash']] ); } else { $query = "INSERT INTO `".BIT_DB_PREFIX."i18n_masters` (`source`,`source_hash`, `created`, `package`) VALUES (?,?,?,?)"; $trans = $this->mDb->query($query, array( $pParamHash['new_source'], $this->getSourceHash( $pParamHash['new_source'] ), time(), $package ) ); } if( count( $this->mErrors ) == 0 ) { $this->mStrings['master'][$newSourceHash]['source'] = $pParamHash['new_source']; $this->mStrings['master'][$newSourceHash]['source_hash'] = $newSourceHash; } $this->mDb->CompleteTrans(); return( count( $this->mErrors ) == 0 ); } function importMasterStrings( $pOverwrite=FALSE ) { global $lang; $count = 0; include_once ( LANGUAGES_PKG_PATH.'lang/masters.php' ); foreach( $lang as $key=>$val ) { $sourceHash = $this->getSourceHash( $key ); $query = "SELECT * FROM `".BIT_DB_PREFIX."i18n_masters` WHERE `source_hash`=?"; $trans = $this->mDb->getAssoc($query, array( $sourceHash ) ); if( $trans ) { if( $pOverwrite ) { $query = "UPDATE `".BIT_DB_PREFIX."i18n_masters` SET `source`=?, `created`=? WHERE `source_hash`=?"; $trans = $this->mDb->query($query, array( $val, time(), $sourceHash ) ); $count++; } } else { $this->storeMasterString( array( 'new_source' => $val, 'source_hash' => $sourceHash ) ); $count++; } } return( $count ); } function storeTranslationString( $pLangCode, $pString, $pSourceHash ) { $query = "DELETE FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `source_hash`=? AND `lang_code`=?"; $result = $this->mDb->query( $query, array($pSourceHash, $pLangCode) ); if( !empty( $pString ) ) { $query = "INSERT INTO `".BIT_DB_PREFIX."i18n_strings` (`lang_code`,`tran`,`source_hash`, `last_modified`) values (?,?,?,?)"; $result = $this->mDb->query( $query, array( $pLangCode, $pString, $pSourceHash, time() ) ); } $this->mStrings[$pLangCode][$pSourceHash]['tran'] = $pString; } function getTranslatedStrings( $pSourceHash ) { $query = "SELECT ist.`lang_code` AS `hash_key`, `tran`, ist.`source_hash`, ist.`lang_code` FROM `".BIT_DB_PREFIX."i18n_strings` ist WHERE ist.`source_hash`=? ORDER BY ist.`lang_code`"; return( $this->mDb->getAssoc($query, array( $pSourceHash ) ) ); } function getTranslationString( $pSourceHash, $pLangCode ) { $this->verifyTranslationLoaded( $pLangCode ); $query = "SELECT im.`source_hash` AS `hash_key`, `source`, `tran`, im.`source_hash` FROM `".BIT_DB_PREFIX."i18n_masters` im LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_strings` ist ON( ist.`source_hash`=im.`source_hash` AND ist.`lang_code`=? ) WHERE im.`source_hash`=? ORDER BY im.`source`"; return( $this->mDb->getAssoc($query, array( $pLangCode, $pSourceHash ) ) ); } function getLanguageFile( $pLangCode ) { return( LANGUAGES_PKG_PATH.'lang/'.$pLangCode.'/language.php' ); } function isImportFileAvailable( $pLangCode ) { return( file_exists( $this->getLanguageFile( $pLangCode ) ) ); } function importTranslationStrings( $pLangCode, $pOverwrite=FALSE, $pTable='i18n_strings`', $pFile=FALSE ) { $count = 0; if( empty( $pFile ) ) { if( $this->isImportFileAvailable( $pLangCode ) ) { $pFile = $this->getLanguageFile( $pLangCode ); } } if( !empty ($pFile ) && file_exists( $pFile ) ) { $this->loadMasterStrings(); // read the file and parse out the master/trans string pairs manually to prevent any evil shit from getting exec'ed $handle = fopen( $pFile, "r" ); $line = ''; while (!feof($handle)) { $line .= fgets( $handle ); if (preg_match( '/([\'"])(.*?)(?[\n\r\s]*([\'"])(.*?)(?$val ) { $hashKey = $this->getSourceHash( $key ); if( !$this->masterStringExists( $hashKey ) ) { $this->storeMasterString( array( 'source_hash' => $hashKey, 'new_source' => $key ) ); } $trans = $this->lookupTranslation( $key, $pLangCode, FALSE ); if( !is_null( $trans ) ) { if( $pOverwrite ) { $query = "UPDATE `".BIT_DB_PREFIX."i18n_strings` SET `tran`=?, `last_modified`=? WHERE `source_hash`=? AND `lang_code`=?"; $trans = $this->mDb->query($query, array( $val, time(), $hashKey, $pLangCode ) ); $count++; } elseif( !empty( $val ) && strtolower( $trans ) != strtolower( $val ) ) { $this->mImportConflicts[$pLangCode][$hashKey]['import'] = $val; $this->mImportConflicts[$pLangCode][$hashKey]['existing'] = $trans; if( !empty( $this->mStrings['master'][$hashKey]['source'] ) ) { $this->mImportConflicts[$pLangCode][$hashKey]['master'] = $this->mStrings['master'][$hashKey]['source']; } } } elseif( !empty( $val ) && (strtolower( $key ) != strtolower( $val )) ) { $query = "INSERT INTO `".BIT_DB_PREFIX."i18n_strings` (`tran`,`source_hash`,`lang_code`,`last_modified`) VALUES (?,?,?,?)"; $trans = $this->mDb->query($query, array( $val, $hashKey, $pLangCode, time() ) ); $count++; } } } return( $count ); } function verifyTranslationLoaded( $pLangCode ) { if ( $pLangCode ) { // see if there is anything in the table $query = "SELECT COUNT(`source_hash`) FROM `".BIT_DB_PREFIX."i18n_strings` ist WHERE ist.`lang_code`=?"; $count = $this->mDb->getOne($query, array( $pLangCode ) ); if( empty( $count ) ) { $this->importTranslationStrings( $pLangCode ); } } } function loadLanguage( $pLangCode ) { $this->verifyMastersLoaded(); $this->verifyTranslationLoaded( $pLangCode ); $query = "SELECT im.`source_hash` AS `hash_key`, `source`, `tran`, im.`source_hash`, ivm.`version` FROM `".BIT_DB_PREFIX."i18n_masters` im LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_strings` ist ON( ist.`source_hash`=im.`source_hash` AND ist.`lang_code`=? ) LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_version_map` ivm ON( im.`source_hash`=ivm.`source_hash` ) ORDER BY im.`source`"; $this->mStrings[$pLangCode] = $this->mDb->getAssoc($query,array( $pLangCode ) ); } function translate( $pString ) { global $gBitTranslationHash, $gBitSystem; $sourceHash = $this->getSourceHash( $pString ); $cacheFile = TEMP_PKG_PATH."lang/".$this->mLanguage."/".$sourceHash; if( $this->mLanguage == 'en' ) { $ret = $pString; } elseif( !empty( $this->mStrings[$this->mLanguage][$sourceHash] ) ) { $ret = $this->mStrings[$this->mLanguage][$sourceHash]['tran']; } elseif( file_exists( $cacheFile ) && !$gBitSystem->isFeatureActive( 'interactive_translation' ) ) { $ret = file_get_contents( $cacheFile ); } else { if( empty( $this->mStrings[$this->mLanguage] ) ) { $this->verifyTranslationLoaded( $this->mLanguage ); } $tran = $this->lookupTranslation( $pString, $this->mLanguage ); if( empty( $tran ) ) { // lookup failed. let's snag the first part of the langCode if it is a dialect (e.g. pt-br ) $dialect = strpos( $this->mLanguage, '-' ); if( $dialect ) { $tran = $this->lookupTranslation( $pString, substr( $this->mLanguage, 0, $dialect ) ); } if( empty( $tran ) ) { $tran = $pString; } } // write out the cache - translated or not so we don't keep hitting the database mkdir_p( dirname( $cacheFile ) ); $fp = fopen( $cacheFile, 'w' ); fwrite( $fp, $tran ); fclose( $fp ); $this->mStrings[$this->mLanguage][$sourceHash]['tran'] = $tran; $ret = $tran; } // interactive translation process if( $gBitSystem->isFeatureActive( 'interactive_translation' ) ) { if( empty( $gBitTranslationHash ) ) { $gBitTranslationHash = array(); } if( !$index = array_search( $sourceHash, $gBitTranslationHash ) ) { $gBitTranslationHash[] = $sourceHash; $index = count( $gBitTranslationHash ) - 1; } $ret .= '_'.$index; } return $ret; } function lookupTranslation( $pString, $pLangCode, $pOverrideUsage = TRUE ) { global $gBitSystem; $sourceHash = $this->getSourceHash( $pString ); if ( $pLangCode ) { $query = "SELECT `tran`, ivm.`version`, ivm.`source_hash` AS `usage_source_hash` FROM `".BIT_DB_PREFIX."i18n_masters` im LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_version_map` ivm ON( ivm.`source_hash`=im.`source_hash` AND ivm.`version`=? ) LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_strings` ist ON( im.`source_hash`=ist.`source_hash` AND `lang_code`=? ) WHERE im.`source_hash`=?"; $ret = $this->mDb->getRow($query, array( BIT_MAJOR_VERSION, $pLangCode, $sourceHash ) ); if( $pOverrideUsage && $gBitSystem->isFeatureActive( 'record_untranslated' ) ) { $query = "SELECT `source_hash` FROM `".BIT_DB_PREFIX."i18n_masters` WHERE `source_hash`=?"; $source = $this->mDb->getOne($query, array( $this->getSourceHash( $pString ) ) ); if( empty( $source ) ) { $this->storeMasterString( array( 'source_hash' => $this->getSourceHash( $pString ), 'new_source' => $pString ) ); } } if( $pOverrideUsage && $gBitSystem->isFeatureActive( 'track_translation_usage' ) ) { if( empty( $ret['usage_source_hash'] ) ) { $query = "INSERT INTO `".BIT_DB_PREFIX."i18n_version_map` (`source_hash`,`version`) VALUES (?,?)"; $trans = $this->mDb->query($query, array( $sourceHash, BIT_MAJOR_VERSION ) ); } } } return (isset( $ret['tran'] ) ? $ret['tran'] : NULL ); } function getSourceHash( $pString ) { return( md5( strtolower( trim( $pString ) ) ) ); } function clearCache() { unlink_r( TEMP_PKG_PATH."lang/" ); unlink_r( TEMP_PKG_PATH."templates_c/" ); } } ?>