| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  | /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  |  * @author Joas Schilling <[email protected]> | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  |  * @author Lukas Reschke <[email protected]> | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  |  * @author Thomas Müller <[email protected]> | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  |  * @author Vincent Petry <[email protected]> | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  |  * @copyright Copyright (c) 2018, ownCloud GmbH | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  |  * @license AGPL-3.0 | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  |  * This code is free software: you can redistribute it and/or modify | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  |  * it under the terms of the GNU Affero General Public License, version 3, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  |  * as published by the Free Software Foundation. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  |  * This program is distributed in the hope that it will be useful, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  |  * GNU Affero General Public License for more details. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  |  * You should have received a copy of the GNU Affero General Public License, version 3, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/> | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  |  */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  | namespace OCA\FederatedFileSharing; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 |  |  | use GuzzleHttp\Exception\ClientException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  | use GuzzleHttp\Exception\ConnectException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 |  |  | use OCP\Http\Client\IClient; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  | use OCP\Http\Client\IClientService; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 |  |  | use OCP\ICache; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 |  |  | use OCP\ICacheFactory; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 |  |  | /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  |  * Class DiscoveryManager handles the discovery of endpoints used by Federated | 
            
                                                                                                            
                            
            
                                    
            
            
                | 36 |  |  |  * Cloud Sharing. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 37 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 38 |  |  |  * @package OCA\FederatedFileSharing | 
            
                                                                                                            
                            
            
                                    
            
            
                | 39 |  |  |  */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 40 |  |  | class DiscoveryManager { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 41 |  |  | 	/** @var ICache */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 42 |  |  | 	private $cache; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 43 |  |  | 	/** @var IClient */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 44 |  |  | 	private $client; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 45 |  |  | 	/** @var bool */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 46 |  |  | 	public $underTest = false; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 47 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 48 |  |  | 	/** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 49 |  |  | 	 * @param ICacheFactory $cacheFactory | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  | 	 * @param IClientService $clientService | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 |  |  | 	 */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 |  |  | 	public function __construct(ICacheFactory $cacheFactory, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 |  |  | 								IClientService $clientService) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 |  |  | 		$this->cache = $cacheFactory->create('ocs-discovery'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 55 |  |  | 		$this->client = $clientService->newClient(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 56 |  |  | 	} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 57 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 58 |  |  | 	/** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 59 |  |  | 	 * Returns whether the specified URL includes only safe characters, if not | 
            
                                                                                                            
                            
            
                                    
            
            
                | 60 |  |  | 	 * returns false | 
            
                                                                                                            
                            
            
                                    
            
            
                | 61 |  |  | 	 * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 62 |  |  | 	 * @param string $url | 
            
                                                                                                            
                            
            
                                    
            
            
                | 63 |  |  | 	 * @return bool | 
            
                                                                                                            
                            
            
                                    
            
            
                | 64 |  |  | 	 */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 65 |  |  | 	private function isSafeUrl($url) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 66 |  |  | 		return (bool)\preg_match('/^[\/\.A-Za-z0-9]+$/', $url); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 67 |  |  | 	} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 68 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 69 |  |  | 	/** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 70 |  |  | 	 * Discover the actual data and do some naive caching to ensure that the data | 
            
                                                                                                            
                            
            
                                    
            
            
                | 71 |  |  | 	 * is not requested multiple times. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 72 |  |  | 	 * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 73 |  |  | 	 * If no valid discovery data is found the ownCloud defaults are returned. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 74 |  |  | 	 * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 75 |  |  | 	 * @param string $remote | 
            
                                                                                                            
                            
            
                                    
            
            
                | 76 |  |  | 	 * @return array | 
            
                                                                                                            
                            
            
                                    
            
            
                | 77 |  |  | 	 */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 78 |  |  | 	private function discover($remote) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 79 |  |  | 		// Check if something is in the cache | 
            
                                                                                                            
                            
            
                                    
            
            
                | 80 |  |  | 		if ($cacheData = $this->cache->get($remote)) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 81 |  |  | 			return \json_decode($cacheData, true); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 82 |  |  | 		} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 83 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 84 |  |  | 		// Default response body | 
            
                                                                                                            
                            
            
                                    
            
            
                | 85 |  |  | 		$discoveredServices = [ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 86 |  |  | 			'webdav' => '/public.php/webdav', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 87 |  |  | 			'share' => '/ocs/v1.php/cloud/shares', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 88 |  |  | 		]; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 89 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 90 |  |  | 		if (\defined('PHPUNIT_RUN') && !$this->underTest) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 91 |  |  | 			return $discoveredServices; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 92 |  |  | 		} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 93 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 94 |  |  | 		$decodedService = $this->makeRequest($remote . '/ocs-provider/'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 95 |  |  | 		if (!empty($decodedService)) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 96 |  |  | 			$endpoints = [ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 97 |  |  | 				'webdav', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 98 |  |  | 				'share', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 99 |  |  | 			]; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 100 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 101 |  |  | 			foreach ($endpoints as $endpoint) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 102 |  |  | 				if (isset($decodedService['services']['FEDERATED_SHARING']['endpoints'][$endpoint])) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 103 |  |  | 					$endpointUrl = (string)$decodedService['services']['FEDERATED_SHARING']['endpoints'][$endpoint]; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 104 |  |  | 					if ($this->isSafeUrl($endpointUrl)) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 105 |  |  | 						$discoveredServices[$endpoint] = $endpointUrl; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 106 |  |  | 					} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 107 |  |  | 				} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 108 |  |  | 			} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 109 |  |  | 		} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 110 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 111 |  |  | 		// Write into cache | 
            
                                                                                                            
                            
            
                                    
            
            
                | 112 |  |  | 		$this->cache->set($remote, \json_encode($discoveredServices)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 113 |  |  | 		return $discoveredServices; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 114 |  |  | 	} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 115 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 116 |  |  | 	/** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 117 |  |  | 	 * Discover the actual data and do some naive caching to ensure that the data | 
            
                                                                                                            
                            
            
                                    
            
            
                | 118 |  |  | 	 * is not requested multiple times. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 119 |  |  | 	 * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 120 |  |  | 	 * If no valid discovery data is found the ownCloud defaults are returned. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 121 |  |  | 	 * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 122 |  |  | 	 * @param string $remote | 
            
                                                                                                            
                            
            
                                    
            
            
                | 123 |  |  | 	 * @return array | 
            
                                                                                                            
                            
            
                                    
            
            
                | 124 |  |  | 	 */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 125 |  |  | 	private function ocmDiscover($remote) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 126 |  |  | 		// Check if something is in the cache | 
            
                                                                                                            
                            
            
                                    
            
            
                | 127 |  |  | 		if ($cacheData = $this->cache->get('OCM' . $remote)) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 128 |  |  | 			return \json_decode($cacheData, true); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 129 |  |  | 		} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 130 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 131 |  |  | 		// Default response body | 
            
                                                                                                            
                            
            
                                    
            
            
                | 132 |  |  | 		$discoveredServices = [ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 133 |  |  | 			'webdav' => '/public.php/webdav', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 134 |  |  | 			'ocm' => '/index.php/apps/federatedfilesharing', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 135 |  |  | 		]; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 136 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 137 |  |  | 		if (\defined('PHPUNIT_RUN') && !$this->underTest) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 138 |  |  | 			return $discoveredServices; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 139 |  |  | 		} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 140 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 141 |  |  | 		$decodedService = $this->makeRequest($remote . '/ocm-provider/'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 142 |  |  | 		if (!empty($decodedService)) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 143 |  |  | 			$discoveredServices['ocm'] = $decodedService['endPoint']; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 144 |  |  | 			$shareTypes = $decodedService['shareTypes']; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 145 |  |  | 			foreach ($shareTypes as $type) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 146 |  |  | 				if ($type['name'] == 'file') { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 147 |  |  | 					$discoveredServices['webdav'] = $type['protocols']['webdav']; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 148 |  |  | 				} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 149 |  |  | 			} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 150 |  |  | 		} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 151 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 152 |  |  | 		// Write into cache | 
            
                                                                                                            
                            
            
                                    
            
            
                | 153 |  |  | 		$this->cache->set('OCM' . $remote, \json_encode($discoveredServices)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 154 |  |  | 		return $discoveredServices; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 155 |  |  | 	} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 156 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 157 |  |  | 	/** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 158 |  |  | 	 * Send GET request and return decoded body of response on success | 
            
                                                                                                            
                            
            
                                    
            
            
                | 159 |  |  | 	 * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 160 |  |  | 	 * @param $url | 
            
                                                                                                            
                            
            
                                    
            
            
                | 161 |  |  | 	 * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 162 |  |  | 	 * @return array | 
            
                                                                                                            
                            
            
                                    
            
            
                | 163 |  |  | 	 */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 164 |  |  | 	private function makeRequest($url) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 165 |  |  | 		$decodedService = []; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 166 |  |  | 		try { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 167 |  |  | 			// make timeout configurable? | 
            
                                                                                                            
                            
            
                                    
            
            
                | 168 |  |  | 			$response = $this->client->get( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 169 |  |  | 				$url, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 170 |  |  | 				[ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 171 |  |  | 					'timeout' => 10, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 172 |  |  | 					'connect_timeout' => 10, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 173 |  |  | 				] | 
            
                                                                                                            
                            
            
                                    
            
            
                | 174 |  |  | 			); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 175 |  |  | 			if ($response->getStatusCode() === 200) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 176 |  |  | 				$decodedService = \json_decode($response->getBody(), true); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 177 |  |  | 			} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 178 |  |  | 			if (\is_array($decodedService) === false) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 179 |  |  | 				$decodedService = []; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 180 |  |  | 			} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 181 |  |  | 		} catch (ClientException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 182 |  |  | 			// Don't throw any exception since exceptions are handled before | 
            
                                                                                                            
                            
            
                                    
            
            
                | 183 |  |  | 		} catch (ConnectException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 184 |  |  | 			// Don't throw any exception since exceptions are handled before | 
            
                                                                                                            
                            
            
                                    
            
            
                | 185 |  |  | 		} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 186 |  |  | 		return $decodedService; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 187 |  |  | 	} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 188 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 189 |  |  | 	/** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 190 |  |  | 	 * Return the public WebDAV endpoint used by the specified remote | 
            
                                                                                                            
                            
            
                                    
            
            
                | 191 |  |  | 	 * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 192 |  |  | 	 * @param string $host | 
            
                                                                                                            
                            
            
                                    
            
            
                | 193 |  |  | 	 * @return string | 
            
                                                                                                            
                            
            
                                    
            
            
                | 194 |  |  | 	 */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 195 |  |  | 	public function getWebDavEndpoint($host) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 196 |  |  | 		return $this->discover($host)['webdav']; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 197 |  |  | 	} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 198 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 199 |  |  | 	/** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 200 |  |  | 	 * Return the sharing endpoint used by the specified remote | 
            
                                                                                                            
                            
            
                                    
            
            
                | 201 |  |  | 	 * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 202 |  |  | 	 * @param string $host | 
            
                                                                                                            
                            
            
                                    
            
            
                | 203 |  |  | 	 * @return string | 
            
                                                                                                            
                            
            
                                    
            
            
                | 204 |  |  | 	 */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 205 |  |  | 	public function getShareEndpoint($host) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 206 |  |  | 		return $this->discover($host)['share']; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 207 |  |  | 	} | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 208 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 209 |  |  | 	public function getOcmWebDavEndPoint($host) { | 
            
                                                                        
                            
            
                                    
            
            
                | 210 |  |  | 		return $this->ocmDiscover($host)['webdav']; | 
            
                                                                        
                            
            
                                    
            
            
                | 211 |  |  | 	} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 212 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 213 |  |  | 	public function getOcmShareEndPoint($host) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 214 |  |  | 		return $this->ocmDiscover($host)['ocm']; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 215 |  |  | 	} | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 216 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 217 |  |  |  |