| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  | <?php namespace BookStack\Http\Controllers; | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | use BookStack\Entities\Repos\PageRepo; | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  | use BookStack\Exceptions\FileUploadException; | 
					
						
							| 
									
										
										
										
											2018-02-11 20:37:02 +08:00
										 |  |  | use BookStack\Exceptions\NotFoundException; | 
					
						
							| 
									
										
										
										
											2018-09-25 23:58:03 +08:00
										 |  |  | use BookStack\Uploads\Attachment; | 
					
						
							| 
									
										
										
										
											2018-09-25 19:30:50 +08:00
										 |  |  | use BookStack\Uploads\AttachmentService; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | use Exception; | 
					
						
							|  |  |  | use Illuminate\Contracts\Filesystem\FileNotFoundException; | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  | use Illuminate\Http\Request; | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  | use Illuminate\Support\MessageBag; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | use Illuminate\Validation\ValidationException; | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  | class AttachmentController extends Controller | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |     protected $attachmentService; | 
					
						
							|  |  |  |     protected $attachment; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     protected $pageRepo; | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |      * AttachmentController constructor. | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function __construct(AttachmentService $attachmentService, Attachment $attachment, PageRepo $pageRepo) | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         $this->attachmentService = $attachmentService; | 
					
						
							|  |  |  |         $this->attachment = $attachment; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $this->pageRepo = $pageRepo; | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |      * Endpoint at which attachments are uploaded to. | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws ValidationException | 
					
						
							|  |  |  |      * @throws NotFoundException | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function upload(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->validate($request, [ | 
					
						
							| 
									
										
										
										
											2016-10-11 04:13:18 +08:00
										 |  |  |             'uploaded_to' => 'required|integer|exists:pages,id', | 
					
						
							|  |  |  |             'file' => 'required|file' | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $pageId = $request->get('uploaded_to'); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $page = $this->pageRepo->getById($pageId); | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         $this->checkPermission('attachment-create-all'); | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |         $this->checkOwnablePermission('page-update', $page); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $uploadedFile = $request->file('file'); | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         try { | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |             $attachment = $this->attachmentService->saveNewUpload($uploadedFile, $pageId); | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |         } catch (FileUploadException $e) { | 
					
						
							|  |  |  |             return response($e->getMessage(), 500); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         return response()->json($attachment); | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |      * Update an uploaded attachment. | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws ValidationException | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-09-16 01:53:30 +08:00
										 |  |  |     public function uploadUpdate(Request $request, $attachmentId) | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $this->validate($request, [ | 
					
						
							|  |  |  |             'file' => 'required|file' | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |         $attachment = $this->attachment->newQuery()->findOrFail($attachmentId); | 
					
						
							|  |  |  |         $this->checkOwnablePermission('view', $attachment->page); | 
					
						
							|  |  |  |         $this->checkOwnablePermission('page-update', $attachment->page); | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         $this->checkOwnablePermission('attachment-create', $attachment); | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $uploadedFile = $request->file('file'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try { | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |             $attachment = $this->attachmentService->saveUpdatedUpload($uploadedFile, $attachment); | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |         } catch (FileUploadException $e) { | 
					
						
							|  |  |  |             return response($e->getMessage(), 500); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         return response()->json($attachment); | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |      * Get the update form for an attachment. | 
					
						
							|  |  |  |      * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |     public function getUpdateForm(string $attachmentId) | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         $attachment = $this->attachment->findOrFail($attachmentId); | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |         $this->checkOwnablePermission('page-update', $attachment->page); | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         $this->checkOwnablePermission('attachment-create', $attachment); | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |         return view('attachments.manager-edit-form', [ | 
					
						
							|  |  |  |             'attachment' => $attachment, | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Update the details of an existing file. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function update(Request $request, string $attachmentId) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $attachment = $this->attachment->newQuery()->findOrFail($attachmentId); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try { | 
					
						
							|  |  |  |             $this->validate($request, [ | 
					
						
							|  |  |  |                 'attachment_edit_name' => 'required|string|min:1|max:255', | 
					
						
							| 
									
										
										
										
											2020-10-31 23:01:52 +08:00
										 |  |  |                 'attachment_edit_url' =>  'string|min:1|max:255|safe_url' | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |             ]); | 
					
						
							|  |  |  |         } catch (ValidationException $exception) { | 
					
						
							|  |  |  |             return response()->view('attachments.manager-edit-form', array_merge($request->only(['attachment_edit_name', 'attachment_edit_url']), [ | 
					
						
							|  |  |  |                 'attachment' => $attachment, | 
					
						
							|  |  |  |                 'errors' => new MessageBag($exception->errors()), | 
					
						
							|  |  |  |             ]), 422); | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |         $this->checkOwnablePermission('view', $attachment->page); | 
					
						
							|  |  |  |         $this->checkOwnablePermission('page-update', $attachment->page); | 
					
						
							|  |  |  |         $this->checkOwnablePermission('attachment-create', $attachment); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $attachment = $this->attachmentService->updateFile($attachment, [ | 
					
						
							|  |  |  |             'name' => $request->get('attachment_edit_name'), | 
					
						
							|  |  |  |             'link' => $request->get('attachment_edit_url'), | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return view('attachments.manager-edit-form', [ | 
					
						
							|  |  |  |             'attachment' => $attachment, | 
					
						
							|  |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 04:13:18 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |      * Attach a link to a page. | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws NotFoundException | 
					
						
							| 
									
										
										
										
											2016-10-11 04:13:18 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function attachLink(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |         $pageId = $request->get('attachment_link_uploaded_to'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try { | 
					
						
							|  |  |  |             $this->validate($request, [ | 
					
						
							|  |  |  |                 'attachment_link_uploaded_to' => 'required|integer|exists:pages,id', | 
					
						
							|  |  |  |                 'attachment_link_name' => 'required|string|min:1|max:255', | 
					
						
							| 
									
										
										
										
											2020-10-31 23:01:52 +08:00
										 |  |  |                 'attachment_link_url' =>  'required|string|min:1|max:255|safe_url' | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |             ]); | 
					
						
							|  |  |  |         } catch (ValidationException $exception) { | 
					
						
							|  |  |  |             return response()->view('attachments.manager-link-form', array_merge($request->only(['attachment_link_name', 'attachment_link_url']), [ | 
					
						
							|  |  |  |                 'pageId' => $pageId, | 
					
						
							|  |  |  |                 'errors' => new MessageBag($exception->errors()), | 
					
						
							|  |  |  |             ]), 422); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-10-11 04:13:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $page = $this->pageRepo->getById($pageId); | 
					
						
							| 
									
										
										
										
											2016-10-11 04:13:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         $this->checkPermission('attachment-create-all'); | 
					
						
							| 
									
										
										
										
											2016-10-11 04:13:18 +08:00
										 |  |  |         $this->checkOwnablePermission('page-update', $page); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |         $attachmentName = $request->get('attachment_link_name'); | 
					
						
							|  |  |  |         $link = $request->get('attachment_link_url'); | 
					
						
							| 
									
										
										
										
											2020-10-31 23:01:52 +08:00
										 |  |  |         $attachment = $this->attachmentService->saveNewFromLink($attachmentName, $link, intval($pageId)); | 
					
						
							| 
									
										
										
										
											2016-10-11 04:13:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |         return view('attachments.manager-link-form', [ | 
					
						
							|  |  |  |             'pageId' => $pageId, | 
					
						
							|  |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2016-10-11 04:13:18 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |      * Get the attachments for a specific page. | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function listForPage(int $pageId) | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $page = $this->pageRepo->getById($pageId); | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |         $this->checkOwnablePermission('page-view', $page); | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |         return view('attachments.manager-list', [ | 
					
						
							| 
									
										
										
										
											2020-07-01 05:12:45 +08:00
										 |  |  |             'attachments' => $page->attachments->all(), | 
					
						
							|  |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |      * Update the attachment sorting. | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws ValidationException | 
					
						
							|  |  |  |      * @throws NotFoundException | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function sortForPage(Request $request, int $pageId) | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $this->validate($request, [ | 
					
						
							| 
									
										
										
										
											2020-07-01 05:12:45 +08:00
										 |  |  |             'order' => 'required|array', | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $page = $this->pageRepo->getById($pageId); | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |         $this->checkOwnablePermission('page-update', $page); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-01 05:12:45 +08:00
										 |  |  |         $attachmentOrder = $request->get('order'); | 
					
						
							|  |  |  |         $this->attachmentService->updateFileOrderWithinPage($attachmentOrder, $pageId); | 
					
						
							| 
									
										
										
										
											2016-12-05 00:51:39 +08:00
										 |  |  |         return response()->json(['message' => trans('entities.attachments_order_updated')]); | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |      * Get an attachment from storage. | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws FileNotFoundException | 
					
						
							| 
									
										
										
										
											2018-05-20 18:06:10 +08:00
										 |  |  |      * @throws NotFoundException | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |     public function get(string $attachmentId) | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         $attachment = $this->attachment->findOrFail($attachmentId); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         try { | 
					
						
							|  |  |  |             $page = $this->pageRepo->getById($attachment->uploaded_to); | 
					
						
							|  |  |  |         } catch (NotFoundException $exception) { | 
					
						
							| 
									
										
										
										
											2018-02-11 20:37:02 +08:00
										 |  |  |             throw new NotFoundException(trans('errors.attachment_not_found')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |         $this->checkOwnablePermission('page-view', $page); | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         if ($attachment->external) { | 
					
						
							|  |  |  |             return redirect($attachment->path); | 
					
						
							| 
									
										
										
										
											2016-10-11 04:13:18 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         $attachmentContents = $this->attachmentService->getAttachmentFromStorage($attachment); | 
					
						
							| 
									
										
										
										
											2018-09-22 18:34:09 +08:00
										 |  |  |         return $this->downloadResponse($attachmentContents, $attachment->getFileName()); | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |      * Delete a specific attachment in the system. | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws Exception | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |     public function delete(string $attachmentId) | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-11-12 22:12:26 +08:00
										 |  |  |         $attachment = $this->attachment->findOrFail($attachmentId); | 
					
						
							|  |  |  |         $this->checkOwnablePermission('attachment-delete', $attachment); | 
					
						
							|  |  |  |         $this->attachmentService->deleteFile($attachment); | 
					
						
							| 
									
										
										
										
											2016-12-05 00:51:39 +08:00
										 |  |  |         return response()->json(['message' => trans('entities.attachments_deleted')]); | 
					
						
							| 
									
										
										
										
											2016-10-11 03:30:27 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-10 01:58:22 +08:00
										 |  |  | } |