MediaWiki REL1_34
ExternalStoreAccess.php
Go to the documentation of this file.
1<?php
6use \Psr\Log\LoggerAwareInterface;
7use \Psr\Log\LoggerInterface;
8use \Psr\Log\NullLogger;
9
22class ExternalStoreAccess implements LoggerAwareInterface {
26 private $logger;
27
32 public function __construct( ExternalStoreFactory $factory, LoggerInterface $logger = null ) {
33 $this->storeFactory = $factory;
34 $this->logger = $logger ?: new NullLogger();
35 }
36
37 public function setLogger( LoggerInterface $logger ) {
38 $this->logger = $logger;
39 }
40
51 public function fetchFromURL( $url, array $params = [] ) {
52 return $this->storeFactory->getStoreForUrl( $url, $params )->fetchFromURL( $url );
53 }
54
65 public function fetchFromURLs( array $urls, array $params = [] ) {
66 $batches = $this->storeFactory->getUrlsByProtocol( $urls );
67 $retval = [];
68 foreach ( $batches as $proto => $batchedUrls ) {
69 $store = $this->storeFactory->getStore( $proto, $params );
70 $retval += $store->batchFetchFromURLs( $batchedUrls );
71 }
72 // invalid, not found, db dead, etc.
73 $missing = array_diff( $urls, array_keys( $retval ) );
74 foreach ( $missing as $url ) {
75 $retval[$url] = false;
76 }
77
78 return $retval;
79 }
80
96 public function insert( $data, array $params = [], array $tryStores = null ) {
97 $tryStores = $tryStores ?? $this->storeFactory->getWriteBaseUrls();
98 if ( !$tryStores ) {
99 throw new ExternalStoreException( "List of external stores provided is empty." );
100 }
101
102 $error = false;
103 while ( count( $tryStores ) > 0 ) {
104 $index = mt_rand( 0, count( $tryStores ) - 1 );
105 $storeUrl = $tryStores[$index];
106
107 $this->logger->debug( __METHOD__ . ": trying $storeUrl\n" );
108
109 $store = $this->storeFactory->getStoreForUrl( $storeUrl, $params );
110 if ( $store === false ) {
111 throw new ExternalStoreException( "Invalid external storage protocol - $storeUrl" );
112 }
113
114 $location = $this->storeFactory->getStoreLocationFromUrl( $storeUrl );
115 try {
116 if ( $store->isReadOnly( $location ) ) {
117 $msg = 'read only';
118 } else {
119 $url = $store->store( $location, $data );
120 if ( strlen( $url ) ) {
121 return $url; // a store accepted the write; done!
122 }
123 $msg = 'operation failed';
124 }
125 } catch ( Exception $error ) {
126 $msg = 'caught ' . get_class( $error ) . ' exception: ' . $error->getMessage();
127 }
128
129 unset( $tryStores[$index] ); // Don't try this one again!
130 $tryStores = array_values( $tryStores ); // Must have consecutive keys
131 $this->logger->error(
132 "Unable to store text to external storage {store_path} ({failure})",
133 [ 'store_path' => $storeUrl, 'failure' => $msg ]
134 );
135 }
136 // All stores failed
137 if ( $error ) {
138 throw $error; // rethrow the last error
139 } else {
140 throw new ExternalStoreException( "Unable to store text to external storage" );
141 }
142 }
143
149 public function isReadOnly( $storeUrls = null ) {
150 if ( $storeUrls === null ) {
151 $storeUrls = $this->storeFactory->getWriteBaseUrls();
152 } else {
153 $storeUrls = is_array( $storeUrls ) ? $storeUrls : [ $storeUrls ];
154 }
155
156 if ( !$storeUrls ) {
157 return false; // no stores exists which can be "read only"
158 }
159
160 foreach ( $storeUrls as $storeUrl ) {
161 $store = $this->storeFactory->getStoreForUrl( $storeUrl );
162 $location = $this->storeFactory->getStoreLocationFromUrl( $storeUrl );
163 if ( $store !== false && !$store->isReadOnly( $location ) ) {
164 return false; // at least one store is not read-only
165 }
166 }
167
168 return true; // all stores are read-only
169 }
170}
Key/value blob storage for a collection of storage medium types (e.g.
insert( $data, array $params=[], array $tryStores=null)
Insert data into storage and return the assigned URL.
setLogger(LoggerInterface $logger)
fetchFromURL( $url, array $params=[])
Fetch data from given URL.
ExternalStoreFactory $storeFactory
fetchFromURLs(array $urls, array $params=[])
Fetch data from multiple URLs with a minimum of round trips.
isReadOnly( $storeUrls=null)
__construct(ExternalStoreFactory $factory, LoggerInterface $logger=null)