/home/vianto5/hidalgoresidences.mx/wp-content/plugins/sitepress-multilingual-cms/API
Edit: /home/vianto5/hidalgoresidences.mx/wp-content/plugins/sitepress-multilingual-cms/API/Jobs.php (8436B)
get_translation_job_id( $trid, $language );
return $jobId ? wpml_tm_load_job_factory()->get_translation_job_as_stdclass( $jobId ) : null;
} ) );
self::macro( 'setNotTranslatedStatus', self::setStatus( Fns::__, ICL_TM_NOT_TRANSLATED ) );
self::macro( 'setTranslationService', curryN( 2, function ( $jobId, $translationService ) {
return self::updateTranslationStatusField( $jobId, 'translation_service', $translationService, '%s' );
} ) );
self::macro( 'clearReviewStatus', self::setReviewStatus( Fns::__, null ) );
self::macro( 'incrementRetryCount', curryN( 1, function ( $jobId ) {
$job = self::get( $jobId );
return $job && isset( $job->ate_comm_retry_count )
? self::updateTranslationStatusField(
$jobId,
'ate_comm_retry_count',
$job->ate_comm_retry_count + 1
)
: null;
} ) );
self::macro( 'getTranslation', curryN( 1, Fns::converge( Obj::prop(), [
Obj::prop( 'language_code' ),
pipe( Obj::prop( 'original_doc_id' ), Fns::memorize( PostTranslations::get() ) )
] ) ) );
self::macro( 'getTranslatedPostId', curryN( 1, pipe( self::getTranslation(), Obj::prop( 'element_id' ) ) ) );
self::macro( 'setTranslated', curryN( 2, function ( $jobId, $status ) {
return self::updateTranslateJobField( $jobId, 'translated', $status );
} ) );
self::macro( 'clearTranslated', self::setTranslated( Fns::__, false ) );
self::macro( 'clearAutomatic', curryN( 1, function ( $jobId ) {
return self::updateTranslateJobField( $jobId, 'automatic', 0 );
} ) );
self::macro( 'delete', curryN( 1, function ( $jobId ) {
global $wpdb;
$rid = Map::fromJobId( $jobId );
$wpdb->delete(
$wpdb->prefix . 'icl_translation_status',
[ 'rid' => $rid ],
[ 'rid' => '%d' ]
);
$wpdb->delete(
$wpdb->prefix . 'icl_translate_job',
[ 'job_id' => $jobId ],
[ 'job_id' => '%d' ]
);
$service = TranslateJobErrorServiceFactory::create();
$service->deleteError( $jobId );
} ) );
self::macro( 'isEligibleForAutomaticTranslations', curryN( 1, Fns::memorize( function ( $wpmlJobId ) {
$getPostType = pipe( Obj::prop( 'original_post_type' ), Str::replace( 'post_', '' ) );
return Maybe::of( $wpmlJobId )
->map( Jobs::get() )
->map( Logic::both(
pipe( $getPostType, [ Automatic::class, 'shouldTranslate' ] ),
pipe( Obj::prop( 'language_code' ), LanguageMappings::isCodeEligibleForAutomaticTranslations() )
) )
->getOrElse( false );
} ) ) );
}
public static function getCurrentUrl() {
$protocol = ( ( ! empty( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] != 'off' ) || Obj::prop( 'SERVER_PORT', $_SERVER ) == 443 ) ? "https://" : "http://";
return $protocol . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
public static function shouldBeATESynced( $job ) {
$statuses = [ ICL_TM_WAITING_FOR_TRANSLATOR, ICL_TM_IN_PROGRESS ];
return Lst::includes( (int) Obj::prop( 'status', $job ), $statuses ) &&
Obj::prop( 'editor', $job ) === \WPML_TM_Editors::ATE;
}
public static function setAutomaticStatus( $jobId, $isAutomatic ) {
self::updateTranslateJobField( $jobId, 'automatic', $isAutomatic ? 1 : 0 );
if ( $isAutomatic ) {
self::updateTranslateJobField( $jobId, 'translator_id', 0 );
self::updateTranslationStatusField( $jobId, 'translator_id', 0 );
self::setStatus( $jobId, ICL_TM_IN_PROGRESS );
}
}
public static function setStatus( $jobId = null, $status = null ) {
return call_user_func_array(
curryN(
2,
function ( $jobId, $status ) {
return self::updateTranslationStatusField(
$jobId,
'status',
$status
);
}
),
func_get_args()
);
}
public static function setReviewStatus( $jobId = null, $status = null ) {
return call_user_func_array(
curryN(
2,
function ( $jobId, $status ) {
return self::updateTranslationStatusField(
$jobId,
'review_status',
$status,
'%s'
);
}
),
func_get_args()
);
}
public static function get( $jobId = null ) {
return call_user_func_array(
curryN(
1,
function ( $jobId ) {
return wpml_tm_load_job_factory()->get_translation_job_as_stdclass( $jobId );
}
),
func_get_args()
);
}
public static function getEditUrl( $returnUrl = null, $jobId = null ) {
return call_user_func_array(
curryN(
2,
function ( $returnUrl, $jobId ) {
$jobEditUrl = admin_url( 'admin.php?page='
. WPML_TM_FOLDER
. '/menu/translations-queue.php&job_id='
. $jobId
. '&return_url=' . urlencode( $returnUrl ) );
return apply_filters( 'icl_job_edit_url', $jobEditUrl, $jobId );
}
),
func_get_args()
);
}
public static function getElementJob( $postId = null, $elementType = null, $language = null ) {
return call_user_func_array(
curryN(
3,
function ( $postId, $elementType, $language ) {
global $sitepress;
$trid = $sitepress->get_element_trid( $postId, $elementType );
return self::getTridJob( $trid, $language );
}
),
func_get_args()
);
}
private static function updateTranslationStatusField( $jobId, $fieldName, $newValue, $fieldType = '%d' ) {
global $wpdb;
$shouldLog = 'status' === $fieldName
&& class_exists( JobLog::class )
&& JobLog::canLog();
$oldStatus = null;
if ( $shouldLog ) {
$oldStatus = $wpdb->get_var( $wpdb->prepare(
"SELECT s.status FROM {$wpdb->prefix}icl_translation_status s
INNER JOIN {$wpdb->prefix}icl_translate_job j ON j.rid = s.rid
WHERE j.job_id = %d",
$jobId
) );
}
$newValueSqlString = null === $newValue ? 'NULL' : $fieldType;
$unpreparedQuery = "
UPDATE {$wpdb->prefix}icl_translation_status
SET `{$fieldName}` = {$newValueSqlString}
WHERE rid = (
SELECT rid FROM {$wpdb->prefix}icl_translate_job
WHERE job_id = %d
)
";
if ( null === $newValue ) {
$query = $wpdb->prepare( $unpreparedQuery, $jobId );
} else {
$query = $wpdb->prepare( $unpreparedQuery, $newValue, $jobId );
}
$affected = $wpdb->query( $query );
if ( $affected > 0 ) {
do_action( 'wpml_tm_ate_jobs_updated', [ $jobId ] );
}
if ( $shouldLog ) {
JobLog::add( 'job_status_set', [
'job_id' => (int) $jobId,
'old_status' => null === $oldStatus ? null : (int) $oldStatus,
'new_status' => null === $newValue ? null : (int) $newValue,
'affected' => false === $affected ? false : (int) $affected,
] );
}
return $jobId;
}
private static function updateTranslateJobField( $jobId, $fieldName, $newValue ) {
global $wpdb;
$wpdb->update(
$wpdb->prefix . 'icl_translate_job',
[ $fieldName => $newValue ],
[ 'job_id' => $jobId ]
);
return $jobId;
}
public static function getPreviousJob( $jobId ) {
global $wpdb;
$sql = "
SELECT * FROM {$wpdb->prefix}icl_translate_job job
WHERE job.job_id < %d AND job.rid = (
SELECT rid FROM {$wpdb->prefix}icl_translate_job WHERE job_id = %d
)
ORDER BY job.job_id DESC
";
return $wpdb->get_row( $wpdb->prepare( $sql, $jobId, $jobId ) );
}
}
Jobs::init();