| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  | /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  |  * CMS Pico - Create websites using Pico CMS for Nextcloud. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  |  * @copyright Copyright (c) 2017, Maxence Lange (<[email protected]>) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  |  * @copyright Copyright (c) 2019, Daniel Rudolf (<[email protected]>) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  |  * @license GNU AGPL version 3 or any later version | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  |  * This program is free software: you can redistribute it and/or modify | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  |  * it under the terms of the GNU Affero General Public License as | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  |  * published by the Free Software Foundation, either version 3 of the | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  |  * License, or (at your option) any later version. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 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 | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  |  */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  | declare(strict_types=1); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 |  |  | namespace OCA\CMSPico\Controller; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  | use OCA\CMSPico\AppInfo\Application; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 |  |  | use OCA\CMSPico\Exceptions\AssetInvalidPathException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  | use OCA\CMSPico\Exceptions\AssetNotFoundException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 |  |  | use OCA\CMSPico\Exceptions\AssetNotPermittedException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 |  |  | use OCA\CMSPico\Exceptions\FilesystemNotLocalException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 |  |  | use OCA\CMSPico\Exceptions\PageInvalidPathException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 |  |  | use OCA\CMSPico\Exceptions\PageNotFoundException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  | use OCA\CMSPico\Exceptions\PageNotPermittedException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 36 |  |  | use OCA\CMSPico\Exceptions\PicoRuntimeException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 37 |  |  | use OCA\CMSPico\Exceptions\ThemeNotCompatibleException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 38 |  |  | use OCA\CMSPico\Exceptions\ThemeNotFoundException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 39 |  |  | use OCA\CMSPico\Exceptions\WebsiteInvalidFilesystemException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 40 |  |  | use OCA\CMSPico\Exceptions\WebsiteInvalidOwnerException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 41 |  |  | use OCA\CMSPico\Exceptions\WebsiteNotFoundException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 42 |  |  | use OCA\CMSPico\Exceptions\WebsiteNotPermittedException; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 43 |  |  | use OCA\CMSPico\Http\InternalServerErrorResponse; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 44 |  |  | use OCA\CMSPico\Http\NotFoundResponse; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 45 |  |  | use OCA\CMSPico\Http\NotModifiedResponse; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 46 |  |  | use OCA\CMSPico\Http\NotPermittedResponse; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 47 |  |  | use OCA\CMSPico\Http\PicoAssetResponse; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 48 |  |  | use OCA\CMSPico\Http\PicoErrorResponse; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 49 |  |  | use OCA\CMSPico\Http\PicoPageResponse; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  | use OCA\CMSPico\Service\FileService; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 |  |  | use OCA\CMSPico\Service\WebsitesService; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 |  |  | use OCP\AppFramework\Controller; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 |  |  | use OCP\AppFramework\Http\Response; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 |  |  | use OCP\IL10N; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 55 |  |  | use OCP\IRequest; | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 56 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 57 |  |  | class PicoController extends Controller | 
            
                                                                        
                            
            
                                    
            
            
                | 58 |  |  | { | 
            
                                                                        
                            
            
                                    
            
            
                | 59 |  |  | 	/** @var string|null */ | 
            
                                                                        
                            
            
                                    
            
            
                | 60 |  |  | 	private $userId; | 
            
                                                                        
                            
            
                                    
            
            
                | 61 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 62 |  |  | 	/** @var IL10N */ | 
            
                                                                        
                            
            
                                    
            
            
                | 63 |  |  | 	private $l10n; | 
            
                                                                        
                            
            
                                    
            
            
                | 64 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 65 |  |  | 	/** @var WebsitesService */ | 
            
                                                                        
                            
            
                                    
            
            
                | 66 |  |  | 	private $websitesService; | 
            
                                                                        
                            
            
                                    
            
            
                | 67 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 68 |  |  | 	/** @var FileService */ | 
            
                                                                        
                            
            
                                    
            
            
                | 69 |  |  | 	private $fileService; | 
            
                                                                        
                            
            
                                    
            
            
                | 70 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 71 |  |  | 	/** | 
            
                                                                        
                            
            
                                    
            
            
                | 72 |  |  | 	 * PicoController constructor. | 
            
                                                                        
                            
            
                                    
            
            
                | 73 |  |  | 	 * | 
            
                                                                        
                            
            
                                    
            
            
                | 74 |  |  | 	 * @param IRequest        $request | 
            
                                                                        
                            
            
                                    
            
            
                | 75 |  |  | 	 * @param string|null     $userId | 
            
                                                                        
                            
            
                                    
            
            
                | 76 |  |  | 	 * @param IL10N           $l10n | 
            
                                                                        
                            
            
                                    
            
            
                | 77 |  |  | 	 * @param WebsitesService $websitesService | 
            
                                                                        
                            
            
                                    
            
            
                | 78 |  |  | 	 * @param FileService     $fileService | 
            
                                                                        
                            
            
                                    
            
            
                | 79 |  |  | 	 */ | 
            
                                                                        
                            
            
                                    
            
            
                | 80 | 1 |  | 	public function __construct( | 
            
                                                                        
                            
            
                                    
            
            
                | 81 |  |  | 		IRequest $request, | 
            
                                                                        
                            
            
                                    
            
            
                | 82 |  |  | 		$userId, | 
            
                                                                        
                            
            
                                    
            
            
                | 83 |  |  | 		IL10N $l10n, | 
            
                                                                        
                            
            
                                    
            
            
                | 84 |  |  | 		WebsitesService $websitesService, | 
            
                                                                        
                            
            
                                    
            
            
                | 85 |  |  | 		FileService $fileService | 
            
                                                                        
                            
            
                                    
            
            
                | 86 |  |  | 	) { | 
            
                                                                        
                            
            
                                    
            
            
                | 87 | 1 |  | 		parent::__construct(Application::APP_NAME, $request); | 
            
                                                                        
                            
            
                                    
            
            
                | 88 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 89 | 1 |  | 		$this->userId = $userId; | 
            
                                                                        
                            
            
                                    
            
            
                | 90 | 1 |  | 		$this->l10n = $l10n; | 
            
                                                                        
                            
            
                                    
            
            
                | 91 | 1 |  | 		$this->websitesService = $websitesService; | 
            
                                                                        
                            
            
                                    
            
            
                | 92 | 1 |  | 		$this->fileService = $fileService; | 
            
                                                                        
                            
            
                                    
            
            
                | 93 | 1 |  | 	} | 
            
                                                                        
                            
            
                                    
            
            
                | 94 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 95 |  |  | 	/** | 
            
                                                                        
                            
            
                                    
            
            
                | 96 |  |  | 	 * @PublicPage | 
            
                                                                        
                            
            
                                    
            
            
                | 97 |  |  | 	 * @NoCSRFRequired | 
            
                                                                        
                            
            
                                    
            
            
                | 98 |  |  | 	 * | 
            
                                                                        
                            
            
                                    
            
            
                | 99 |  |  | 	 * @param string $site | 
            
                                                                        
                            
            
                                    
            
            
                | 100 |  |  | 	 * @param string $page | 
            
                                                                        
                            
            
                                    
            
            
                | 101 |  |  | 	 * @param bool   $proxyRequest | 
            
                                                                        
                            
            
                                    
            
            
                | 102 |  |  | 	 * | 
            
                                                                        
                            
            
                                    
            
            
                | 103 |  |  | 	 * @return Response | 
            
                                                                        
                            
            
                                    
            
            
                | 104 |  |  | 	 */ | 
            
                                                                        
                            
            
                                    
            
            
                | 105 | 1 |  | 	public function getPage(string $site, string $page, bool $proxyRequest = false): Response | 
            
                                                                        
                            
            
                                    
            
            
                | 106 |  |  | 	{ | 
            
                                                                        
                            
            
                                    
            
            
                | 107 |  |  | 		try { | 
            
                                                                        
                            
            
                                    
            
            
                | 108 | 1 |  | 			$picoPage = $this->websitesService->getPage($site, $page, $this->userId, $proxyRequest); | 
            
                                                                        
                            
            
                                    
            
            
                | 109 | 1 |  | 			return new PicoPageResponse($picoPage); | 
            
                                                                        
                            
            
                                    
            
            
                | 110 |  |  | 		} catch (WebsiteNotFoundException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 111 |  |  | 			return new NotFoundResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 112 |  |  | 				'The requested website could not be found on the server. Maybe the website was deleted?' | 
            
                                                                        
                            
            
                                    
            
            
                | 113 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 114 |  |  | 		} catch (WebsiteInvalidOwnerException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 115 |  |  | 			return new NotFoundResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 116 |  |  | 				'The requested website could not be found on the server. Maybe the website was deleted?' | 
            
                                                                        
                            
            
                                    
            
            
                | 117 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 118 |  |  | 		} catch (WebsiteInvalidFilesystemException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 119 |  |  | 			return new InternalServerErrorResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 120 |  |  | 				'The file and directory structure of this website appears to be broken und thus could not be accessed.' | 
            
                                                                        
                            
            
                                    
            
            
                | 121 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 122 |  |  | 		} catch (WebsiteNotPermittedException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 123 |  |  | 			return new NotPermittedResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 124 |  |  | 				'You don\'t have access to this private website. Maybe the share was deleted or has expired?' | 
            
                                                                        
                            
            
                                    
            
            
                | 125 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 126 |  |  | 		} catch (FilesystemNotLocalException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 127 |  |  | 			return new InternalServerErrorResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 128 |  |  | 				'This website is hosted on a non-local storage and thus could not be accessed.' | 
            
                                                                        
                            
            
                                    
            
            
                | 129 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 130 |  |  | 		} catch (ThemeNotFoundException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 131 |  |  | 			return new InternalServerErrorResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 132 |  |  | 				'This website uses a theme that could not be found on the server and thus could not be built.' | 
            
                                                                        
                            
            
                                    
            
            
                | 133 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 134 |  |  | 		} catch (ThemeNotCompatibleException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 135 |  |  | 			return new InternalServerErrorResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 136 |  |  | 				'This website uses a incompatible theme and thus could not be built.' | 
            
                                                                        
                            
            
                                    
            
            
                | 137 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 138 |  |  | 		} catch (PageInvalidPathException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 139 |  |  | 			return new NotFoundResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 140 |  |  | 				'The requested website page could not be found on the server. Maybe the page was deleted?' | 
            
                                                                        
                            
            
                                    
            
            
                | 141 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 142 |  |  | 		} catch (PageNotFoundException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 143 |  |  | 			return new NotFoundResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 144 |  |  | 				'The requested website page could not be found on the server. Maybe the page was deleted?' | 
            
                                                                        
                            
            
                                    
            
            
                | 145 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 146 |  |  | 		} catch (PageNotPermittedException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 147 |  |  | 			return new NotPermittedResponse($this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 148 |  |  | 				'You don\'t have access to this website page. Maybe the share was deleted or has expired?' | 
            
                                                                        
                            
            
                                    
            
            
                | 149 |  |  | 			)); | 
            
                                                                        
                            
            
                                    
            
            
                | 150 |  |  | 		} catch (PicoRuntimeException $e) { | 
            
                                                                        
                            
            
                                    
            
            
                | 151 |  |  | 			$errorMessage = $this->l10n->t( | 
            
                                                                        
                            
            
                                    
            
            
                | 152 |  |  | 				'The requested website page could not be built, ' | 
            
                                                                        
                            
            
                                    
            
            
                | 153 |  |  | 					. 'so that the server was unable to complete your request.' | 
            
                                                                        
                            
            
                                    
            
            
                | 154 |  |  | 			); | 
            
                                                                        
                            
            
                                    
            
            
                | 155 |  |  | 			return new PicoErrorResponse($errorMessage, $e); | 
            
                                                                        
                            
            
                                    
            
            
                | 156 |  |  | 		} | 
            
                                                                        
                            
            
                                    
            
            
                | 157 |  |  | 	} | 
            
                                                                        
                            
            
                                    
            
            
                | 158 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 159 |  |  | 	/** | 
            
                                                                        
                            
            
                                    
            
            
                | 160 |  |  | 	 * @PublicPage | 
            
                                                                        
                            
            
                                    
            
            
                | 161 |  |  | 	 * @NoCSRFRequired | 
            
                                                                        
                            
            
                                    
            
            
                | 162 |  |  | 	 * | 
            
                                                                        
                            
            
                                    
            
            
                | 163 |  |  | 	 * @param string $site | 
            
                                                                        
                            
            
                                    
            
            
                | 164 |  |  | 	 * @param string $asset | 
            
                                                                        
                            
            
                                    
            
            
                | 165 |  |  | 	 * @param string $assetsETag | 
            
                                                                        
                            
            
                                    
            
            
                | 166 |  |  | 	 * | 
            
                                                                        
                            
            
                                    
            
            
                | 167 |  |  | 	 * @return Response | 
            
                                                                        
                            
            
                                    
            
            
                | 168 |  |  | 	 */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 169 |  |  | 	public function getAsset(string $site, string $asset, string $assetsETag = ''): Response | 
            
                                                                                                            
                            
            
                                    
            
            
                | 170 |  |  | 	{ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 171 |  |  | 		try { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 172 |  |  | 			$picoAsset = $this->websitesService->getAsset($site, $asset, $this->userId); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 173 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 174 |  |  | 			$response = new PicoAssetResponse($picoAsset, (bool) $assetsETag); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 175 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 176 |  |  | 			$assetETag = $picoAsset->getETag(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 177 |  |  | 			$clientETag = $this->request->getHeader('If-None-Match'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 178 |  |  | 			if ($assetETag && $clientETag) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 179 |  |  | 				if (preg_match('/^"?' . preg_quote($assetETag, '/') . '(?>"?$|-)/', $clientETag)) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 180 |  |  | 					return new NotModifiedResponse($response); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 181 |  |  | 				} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 182 |  |  | 			} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 183 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 184 |  |  | 			return $response; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 185 |  |  | 		} catch (WebsiteNotFoundException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 186 |  |  | 			return new NotFoundResponse($this->l10n->t( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 187 |  |  | 				'The requested website could not be found on the server. Maybe the website was deleted?' | 
            
                                                                                                            
                            
            
                                    
            
            
                | 188 |  |  | 			)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 189 |  |  | 		} catch (WebsiteInvalidOwnerException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 190 |  |  | 			return new NotFoundResponse($this->l10n->t( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 191 |  |  | 				'The requested website could not be found on the server. Maybe the website was deleted?' | 
            
                                                                                                            
                            
            
                                    
            
            
                | 192 |  |  | 			)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 193 |  |  | 		} catch (WebsiteInvalidFilesystemException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 194 |  |  | 			return new InternalServerErrorResponse($this->l10n->t( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 195 |  |  | 				'The file and directory structure of this website appears to be broken und thus could not be accessed.' | 
            
                                                                                                            
                            
            
                                    
            
            
                | 196 |  |  | 			)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 197 |  |  | 		} catch (WebsiteNotPermittedException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 198 |  |  | 			return new NotPermittedResponse($this->l10n->t( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 199 |  |  | 				'You don\'t have access to this private website. Maybe the share was deleted or has expired?' | 
            
                                                                                                            
                            
            
                                    
            
            
                | 200 |  |  | 			)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 201 |  |  | 		} catch (FilesystemNotLocalException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 202 |  |  | 			return new InternalServerErrorResponse($this->l10n->t( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 203 |  |  | 				'This website is hosted on a non-local storage and thus could not be accessed.' | 
            
                                                                                                            
                            
            
                                    
            
            
                | 204 |  |  | 			)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 205 |  |  | 		} catch (AssetInvalidPathException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 206 |  |  | 			return new NotFoundResponse($this->l10n->t( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 207 |  |  | 				'The requested website asset could not be found on the server. Maybe the asset was deleted?' | 
            
                                                                                                            
                            
            
                                    
            
            
                | 208 |  |  | 			)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 209 |  |  | 		} catch (AssetNotFoundException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 210 |  |  | 			return new NotFoundResponse($this->l10n->t( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 211 |  |  | 				'The requested website asset could not be found on the server. Maybe the asset was deleted?' | 
            
                                                                                                            
                            
            
                                    
            
            
                | 212 |  |  | 			)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 213 |  |  | 		} catch (AssetNotPermittedException $e) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 214 |  |  | 			return new NotPermittedResponse($this->l10n->t( | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 215 |  |  | 				'You don\'t have access to this website asset. Maybe the share was deleted or has expired?' | 
            
                                                                        
                                                                
            
                                    
            
            
                | 216 |  |  | 			)); | 
            
                                                                        
                                                                
            
                                    
            
            
                | 217 |  |  | 		} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 218 |  |  | 	} | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 219 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 220 |  |  |  |