fileExists( $this->params['src'], $predicates ); if ( $srcExists === false ) { if ( $this->getParam( 'ignoreMissingSource' ) ) { $this->doOperation = false; // no-op // Update file existence predicates (cache 404s) $predicates['exists'][$this->params['src']] = false; $predicates['sha1'][$this->params['src']] = false; return $status; // nothing to do } else { $status->fatal( 'backend-fail-notexists', $this->params['src'] ); return $status; } } elseif ( $srcExists === FileBackend::EXISTENCE_ERROR ) { $status->fatal( 'backend-fail-stat', $this->params['src'] ); return $status; } // Check if an incompatible destination file exists $status->merge( $this->precheckDestExistence( $predicates ) ); $this->params['dstExists'] = $this->destExists; // see FileBackendStore::setFileCache() if ( $status->isOK() ) { // Update file existence predicates $predicates['exists'][$this->params['src']] = false; $predicates['sha1'][$this->params['src']] = false; $predicates['exists'][$this->params['dst']] = true; $predicates['sha1'][$this->params['dst']] = $this->sourceSha1; } return $status; // safe to call attempt() } protected function doAttempt() { if ( $this->overwriteSameCase ) { if ( $this->params['src'] === $this->params['dst'] ) { // Do nothing to the destination (which is also the source) $status = StatusValue::newGood(); } else { // Just delete the source as the destination file needs no changes $status = $this->backend->deleteInternal( $this->setFlags( [ 'src' => $this->params['src'] ] ) ); } } elseif ( $this->params['src'] === $this->params['dst'] ) { // Just update the destination file headers $headers = $this->getParam( 'headers' ) ?: []; $status = $this->backend->describeInternal( $this->setFlags( [ 'src' => $this->params['dst'], 'headers' => $headers ] ) ); } else { // Move the file to the destination $status = $this->backend->moveInternal( $this->setFlags( $this->params ) ); } return $status; } public function storagePathsRead() { return [ $this->params['src'] ]; } public function storagePathsChanged() { return [ $this->params['src'], $this->params['dst'] ]; } }