33 lines
817 B
PHP
33 lines
817 B
PHP
<?php
|
|
|
|
namespace WPML\Media\Translate\Endpoint;
|
|
|
|
use WPML\Ajax\IHandler;
|
|
use WPML\Collect\Support\Collection;
|
|
use function WPML\Container\make;
|
|
use WPML\FP\Left;
|
|
use WPML\FP\Right;
|
|
use WPML\Media\Option;
|
|
use WPML\Utilities\KeyedLock;
|
|
|
|
class PrepareForTranslation implements IHandler {
|
|
const LOCK_RELEASE_TIMEOUT = 2 * MINUTE_IN_SECONDS;
|
|
|
|
public function run( Collection $data ) {
|
|
if ( Option::isSetupFinished() ) {
|
|
return Left::of( [ 'key' => false ] );
|
|
}
|
|
|
|
$lock = make( KeyedLock::class, [ ':name' => self::class ] );
|
|
$key = $lock->create( $data->get( 'key' ), self::LOCK_RELEASE_TIMEOUT );
|
|
|
|
if ( $key ) {
|
|
make( \WPML_Media_Attachments_Duplication::class )->batch_scan_prepare( false );
|
|
|
|
return Right::of( [ 'key' => $key, ] );
|
|
} else {
|
|
return Left::of( [ 'key' => 'in-use', ] );
|
|
}
|
|
}
|
|
}
|