Collapse some nested if statements
[lhc/web/wiklou.git] / includes / cache / localisation / LCStoreStaticArray.php
1 <?php
2 /**
3 * Localisation cache storage based on PHP files and static arrays.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 use Wikimedia\StaticArrayWriter;
24
25 /**
26 * @since 1.26
27 */
28 class LCStoreStaticArray implements LCStore {
29 /** @var string|null Current language code. */
30 private $currentLang = null;
31
32 /** @var array Localisation data. */
33 private $data = [];
34
35 /** @var string File name. */
36 private $fname = null;
37
38 /** @var string Directory for cache files. */
39 private $directory;
40
41 public function __construct( $conf = [] ) {
42 global $wgCacheDirectory;
43
44 $this->directory = $conf['directory'] ?? $wgCacheDirectory;
45 }
46
47 public function startWrite( $code ) {
48 if ( !file_exists( $this->directory ) && !wfMkdirParents( $this->directory, null, __METHOD__ ) ) {
49 throw new MWException( "Unable to create the localisation store " .
50 "directory \"{$this->directory}\"" );
51 }
52
53 $this->currentLang = $code;
54 $this->fname = $this->directory . '/' . $code . '.l10n.php';
55 $this->data[$code] = [];
56 if ( file_exists( $this->fname ) ) {
57 $this->data[$code] = require $this->fname;
58 }
59 }
60
61 public function set( $key, $value ) {
62 $this->data[$this->currentLang][$key] = self::encode( $value );
63 }
64
65 /**
66 * Encodes a value into an array format
67 *
68 * @param mixed $value
69 * @return array|mixed
70 * @throws RuntimeException
71 */
72 public static function encode( $value ) {
73 if ( is_array( $value ) ) {
74 // [a]rray
75 return [ 'a', array_map( 'LCStoreStaticArray::encode', $value ) ];
76 }
77 if ( is_object( $value ) ) {
78 // [s]erialized
79 return [ 's', serialize( $value ) ];
80 }
81 if ( is_scalar( $value ) || $value === null ) {
82 // Scalar value, written directly without array
83 return $value;
84 }
85
86 throw new RuntimeException( 'Cannot encode ' . var_export( $value, true ) );
87 }
88
89 /**
90 * Decode something that was encoded with encode
91 *
92 * @param mixed $encoded
93 * @return array|mixed
94 * @throws RuntimeException
95 */
96 public static function decode( $encoded ) {
97 if ( !is_array( $encoded ) ) {
98 // Scalar values are written directly without array
99 return $encoded;
100 }
101
102 list( $type, $data ) = $encoded;
103
104 switch ( $type ) {
105 case 'a':
106 return array_map( 'LCStoreStaticArray::decode', $data );
107 case 's':
108 return unserialize( $data );
109 case 'v':
110 // Support: MediaWiki 1.32 and earlier
111 // Backward compatibility with older file format
112 return $data;
113 default:
114 throw new RuntimeException(
115 'Unable to decode ' . var_export( $encoded, true ) );
116 }
117 }
118
119 public function finishWrite() {
120 $writer = new StaticArrayWriter();
121 $out = $writer->create(
122 $this->data[$this->currentLang],
123 'Generated by LCStoreStaticArray.php -- do not edit!'
124 );
125 file_put_contents( $this->fname, $out );
126 $this->currentLang = null;
127 $this->fname = null;
128 }
129
130 public function get( $code, $key ) {
131 if ( !array_key_exists( $code, $this->data ) ) {
132 $fname = $this->directory . '/' . $code . '.l10n.php';
133 if ( !file_exists( $fname ) ) {
134 return null;
135 }
136 $this->data[$code] = require $fname;
137 }
138 $data = $this->data[$code];
139 if ( array_key_exists( $key, $data ) ) {
140 return self::decode( $data[$key] );
141 }
142 return null;
143 }
144 }