MediaWiki master
StoreFileOp.php
Go to the documentation of this file.
1<?php
25
26use StatusValue;
27use Wikimedia\AtEase\AtEase;
28
33class StoreFileOp extends FileOp {
34 protected function allowedParams() {
35 return [
36 [ 'src', 'dst' ],
37 [ 'overwrite', 'overwriteSame', 'headers' ],
38 [ 'src', 'dst' ]
39 ];
40 }
41
42 protected function doPrecheck(
43 FileStatePredicates $opPredicates,
44 FileStatePredicates $batchPredicates
45 ) {
46 $status = StatusValue::newGood();
47
48 // Check if the source file exists in the file system
49 if ( !is_file( $this->params['src'] ) ) {
50 $status->fatal( 'backend-fail-notexists', $this->params['src'] );
51
52 return $status;
53 }
54 // Check if the source file is too big
55 $sourceSize = $this->getSourceSize();
56 $maxFileSize = $this->backend->maxFileSizeInternal();
57 if ( $sourceSize > $maxFileSize ) {
58 $status->fatal( 'backend-fail-maxsize', $this->params['dst'], $maxFileSize );
59
60 return $status;
61 }
62 // Check if an incompatible destination file exists
63 $sourceSha1 = function () {
64 static $sha1 = null;
65 $sha1 ??= $this->getSourceSha1Base36();
66 return $sha1;
67 };
68 $status->merge( $this->precheckDestExistence( $opPredicates, $sourceSize, $sourceSha1 ) );
69 $this->params['dstExists'] = $this->destExists; // see FileBackendStore::setFileCache()
70
71 // Update file existence predicates if the operation is expected to be allowed to run
72 if ( $status->isOK() ) {
73 $batchPredicates->assumeFileExists( $this->params['dst'], $sourceSize, $sourceSha1 );
74 }
75
76 return $status; // safe to call attempt()
77 }
78
79 protected function doAttempt() {
80 if ( $this->overwriteSameCase ) {
81 $status = StatusValue::newGood(); // nothing to do
82 } else {
83 // Store the file at the destination
84 $status = $this->backend->storeInternal( $this->setFlags( $this->params ) );
85 }
86
87 return $status;
88 }
89
90 protected function getSourceSize() {
91 AtEase::suppressWarnings();
92 $size = filesize( $this->params['src'] );
93 AtEase::restoreWarnings();
94
95 return $size;
96 }
97
98 protected function getSourceSha1Base36() {
99 AtEase::suppressWarnings();
100 $hash = sha1_file( $this->params['src'] );
101 AtEase::restoreWarnings();
102 if ( $hash !== false ) {
103 $hash = \Wikimedia\base_convert( $hash, 16, 36, 31 );
104 }
105
106 return $hash;
107 }
108
109 public function storagePathsChanged() {
110 return [ $this->params['dst'] ];
111 }
112}
113
115class_alias( StoreFileOp::class, 'StoreFileOp' );
Generic operation result class Has warning/error list, boolean status and arbitrary value.
FileBackend helper class for representing operations.
Definition FileOp.php:47
precheckDestExistence(FileStatePredicates $opPredicates, $sourceSize, $sourceSha1)
Check for errors with regards to the destination file already existing.
Definition FileOp.php:363
setFlags(array $params)
Adjust params to FileBackendStore internal file calls.
Definition FileOp.php:319
Helper class for tracking counterfactual file states when pre-checking file operation batches.
assumeFileExists(string $path, $size, $sha1Base36)
Predicate that a file exists at the path.
Store a file into the backend from a file on the file system.
storagePathsChanged()
Get a list of storage paths written to for this operation.
doPrecheck(FileStatePredicates $opPredicates, FileStatePredicates $batchPredicates)
Do a dry-run precondition check of the operation in the context of op batch.
allowedParams()
Get the file operation parameters.