MediaWiki master
UploadedFile.php
Go to the documentation of this file.
1<?php
2
4
5use Psr\Http\Message\UploadedFileInterface;
6use RuntimeException;
7use Wikimedia\AtEase\AtEase;
8
20class UploadedFile implements UploadedFileInterface {
21
23 private $data;
24
26 private $fromUpload;
27
29 private $stream = null;
30
32 private $moved = false;
33
39 public function __construct( array $data, $fromUpload = true ) {
40 $this->data = $data;
41 $this->fromUpload = $fromUpload;
42 }
43
48 private function checkError() {
49 switch ( $this->data['error'] ) {
50 case UPLOAD_ERR_OK:
51 break;
52
53 case UPLOAD_ERR_INI_SIZE:
54 throw new RuntimeException( 'Upload exceeded maximum size' );
55
56 case UPLOAD_ERR_FORM_SIZE:
57 throw new RuntimeException( 'Upload exceeded form-specified maximum size' );
58
59 case UPLOAD_ERR_PARTIAL:
60 throw new RuntimeException( 'File was only partially uploaded' );
61
62 case UPLOAD_ERR_NO_FILE:
63 throw new RuntimeException( 'No file was uploaded' );
64
65 case UPLOAD_ERR_NO_TMP_DIR:
66 throw new RuntimeException( 'PHP has no temporary folder for storing uploaded files' );
67
68 case UPLOAD_ERR_CANT_WRITE:
69 throw new RuntimeException( 'PHP was unable to save the uploaded file' );
70
71 case UPLOAD_ERR_EXTENSION:
72 throw new RuntimeException( 'A PHP extension stopped the file upload' );
73
74 default:
75 throw new RuntimeException( 'Unknown upload error code ' . $this->data['error'] );
76 }
77
78 if ( $this->moved ) {
79 throw new RuntimeException( 'File has already been moved' );
80 }
81 if ( !isset( $this->data['tmp_name'] ) || !file_exists( $this->data['tmp_name'] ) ) {
82 throw new RuntimeException( 'Uploaded file is missing' );
83 }
84 }
85
87 public function getStream() {
88 if ( $this->stream ) {
89 return $this->stream;
90 }
91
92 $this->checkError();
93 $this->stream = new UploadedFileStream( $this->data['tmp_name'] );
94 return $this->stream;
95 }
96
98 public function moveTo( $targetPath ) {
99 $this->checkError();
100
101 if ( $this->fromUpload && !is_uploaded_file( $this->data['tmp_name'] ) ) {
102 throw new RuntimeException( 'Specified file is not an uploaded file' );
103 }
104
105 error_clear_last();
106 $ret = AtEase::quietCall(
107 $this->fromUpload ? 'move_uploaded_file' : 'rename',
108 $this->data['tmp_name'],
109 $targetPath
110 );
111 if ( $ret === false ) {
112 $err = error_get_last();
113 throw new RuntimeException( "Move failed: " . ( $err['message'] ?? 'Unknown error' ) );
114 }
115
116 $this->moved = true;
117 if ( $this->stream ) {
118 $this->stream->close();
119 $this->stream = null;
120 }
121 }
122
124 public function getSize() {
125 return $this->data['size'] ?? null;
126 }
127
129 public function getError() {
130 return $this->data['error'] ?? UPLOAD_ERR_NO_FILE;
131 }
132
134 public function getClientFilename() {
135 $ret = $this->data['name'] ?? null;
136 return $ret === '' ? null : $ret;
137 }
138
140 public function getClientMediaType() {
141 $ret = $this->data['type'] ?? null;
142 return $ret === '' ? null : $ret;
143 }
144
145}
Implementation of StreamInterface for a file in $_FILES.
A simple implementation of UploadedFileInterface.
__construct(array $data, $fromUpload=true)