Blame view

sources/apps/files_sharing/public.php 10.1 KB
03e52840d   Kload   Init
1
2
3
  <?php
  // Load other apps for file previews
  OC_App::loadApps();
31b7f2792   Kload   Upgrade to ownclo...
4
5
6
7
8
9
  if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') {
  	header('HTTP/1.0 404 Not Found');
  	$tmpl = new OCP\Template('', '404', 'guest');
  	$tmpl->printPage();
  	exit();
  }
03e52840d   Kload   Init
10
11
12
13
14
15
16
17
18
  function fileCmp($a, $b) {
  	if ($a['type'] == 'dir' and $b['type'] != 'dir') {
  		return -1;
  	} elseif ($a['type'] != 'dir' and $b['type'] == 'dir') {
  		return 1;
  	} else {
  		return strnatcasecmp($a['name'], $b['name']);
  	}
  }
31b7f2792   Kload   Upgrade to ownclo...
19
20
21
22
23
24
25
26
27
28
29
30
31
  function determineIcon($file, $sharingRoot, $sharingToken) {
  	// for folders we simply reuse the files logic
  	if($file['type'] == 'dir') {
  		return \OCA\Files\Helper::determineIcon($file);
  	}
  
  	$relativePath = substr($file['path'], 6);
  	$relativePath = substr($relativePath, strlen($sharingRoot));
  	if($file['isPreviewAvailable']) {
  		return OCP\publicPreview_icon($relativePath, $sharingToken) . '&c=' . $file['etag'];
  	}
  	return OCP\mimetype_icon($file['mimetype']);
  }
03e52840d   Kload   Init
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  if (isset($_GET['t'])) {
  	$token = $_GET['t'];
  	$linkItem = OCP\Share::getShareByToken($token);
  	if (is_array($linkItem) && isset($linkItem['uid_owner'])) {
  		// seems to be a valid share
  		$type = $linkItem['item_type'];
  		$fileSource = $linkItem['file_source'];
  		$shareOwner = $linkItem['uid_owner'];
  		$path = null;
  		$rootLinkItem = OCP\Share::resolveReShare($linkItem);
  		$fileOwner = $rootLinkItem['uid_owner'];
  		if (isset($fileOwner)) {
  			OC_Util::tearDownFS();
  			OC_Util::setupFS($fileOwner);
  			$path = \OC\Files\Filesystem::getPath($linkItem['file_source']);
  		}
  	}
  }
  if (isset($path)) {
  	if (!isset($linkItem['item_type'])) {
  		OCP\Util::writeLog('share', 'No item type set for share id: ' . $linkItem['id'], \OCP\Util::ERROR);
  		header('HTTP/1.0 404 Not Found');
  		$tmpl = new OCP\Template('', '404', 'guest');
  		$tmpl->printPage();
  		exit();
  	}
  	if (isset($linkItem['share_with'])) {
  		// Authenticate share_with
  		$url = OCP\Util::linkToPublic('files') . '&t=' . $token;
  		if (isset($_GET['file'])) {
  			$url .= '&file=' . urlencode($_GET['file']);
  		} else {
  			if (isset($_GET['dir'])) {
  				$url .= '&dir=' . urlencode($_GET['dir']);
  			}
  		}
  		if (isset($_POST['password'])) {
  			$password = $_POST['password'];
  			if ($linkItem['share_type'] == OCP\Share::SHARE_TYPE_LINK) {
  				// Check Password
  				$forcePortable = (CRYPT_BLOWFISH != 1);
  				$hasher = new PasswordHash(8, $forcePortable);
  				if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''),
  											 $linkItem['share_with']))) {
31b7f2792   Kload   Upgrade to ownclo...
76
  					OCP\Util::addStyle('files_sharing', 'authenticate');
03e52840d   Kload   Init
77
78
79
80
81
82
83
  					$tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest');
  					$tmpl->assign('URL', $url);
  					$tmpl->assign('wrongpw', true);
  					$tmpl->printPage();
  					exit();
  				} else {
  					// Save item id in session for future requests
31b7f2792   Kload   Upgrade to ownclo...
84
  					\OC::$session->set('public_link_authenticated', $linkItem['id']);
03e52840d   Kload   Init
85
86
87
88
89
90
91
92
93
94
95
96
  				}
  			} else {
  				OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type']
  										   .' for share id '.$linkItem['id'], \OCP\Util::ERROR);
  				header('HTTP/1.0 404 Not Found');
  				$tmpl = new OCP\Template('', '404', 'guest');
  				$tmpl->printPage();
  				exit();
  			}
  
  		} else {
  			// Check if item id is set in session
31b7f2792   Kload   Upgrade to ownclo...
97
98
  			if ( ! \OC::$session->exists('public_link_authenticated')
  				|| \OC::$session->get('public_link_authenticated') !== $linkItem['id']
03e52840d   Kload   Init
99
100
  			) {
  				// Prompt for password
31b7f2792   Kload   Upgrade to ownclo...
101
  				OCP\Util::addStyle('files_sharing', 'authenticate');
03e52840d   Kload   Init
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  				$tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest');
  				$tmpl->assign('URL', $url);
  				$tmpl->printPage();
  				exit();
  			}
  		}
  	}
  	$basePath = $path;
  	if (isset($_GET['path']) && \OC\Files\Filesystem::isReadable($basePath . $_GET['path'])) {
  		$getPath = \OC\Files\Filesystem::normalizePath($_GET['path']);
  		$path .= $getPath;
  	} else {
  		$getPath = '';
  	}
  	$dir = dirname($path);
  	$file = basename($path);
  	// Download the file
  	if (isset($_GET['download'])) {
  		if (isset($_GET['files'])) { // download selected files
  			$files = urldecode($_GET['files']);
  			$files_list = json_decode($files);
  			// in case we get only a single file
  			if ($files_list === NULL ) {
  				$files_list = array($files);
  			}
31b7f2792   Kload   Upgrade to ownclo...
127
  			OC_Files::get($path, $files_list, $_SERVER['REQUEST_METHOD'] == 'HEAD');
03e52840d   Kload   Init
128
  		} else {
31b7f2792   Kload   Upgrade to ownclo...
129
  			OC_Files::get($dir, $file, $_SERVER['REQUEST_METHOD'] == 'HEAD');
03e52840d   Kload   Init
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
  		}
  		exit();
  	} else {
  		OCP\Util::addScript('files', 'file-upload');
  		OCP\Util::addStyle('files_sharing', 'public');
  		OCP\Util::addScript('files_sharing', 'public');
  		OCP\Util::addScript('files', 'fileactions');
  		OCP\Util::addScript('files', 'jquery.iframe-transport');
  		OCP\Util::addScript('files', 'jquery.fileupload');
  		$maxUploadFilesize=OCP\Util::maxUploadFilesize($path);
  		$tmpl = new OCP\Template('files_sharing', 'public', 'base');
  		$tmpl->assign('uidOwner', $shareOwner);
  		$tmpl->assign('displayName', \OCP\User::getDisplayName($shareOwner));
  		$tmpl->assign('filename', $file);
  		$tmpl->assign('directory_path', $linkItem['file_target']);
  		$tmpl->assign('mimetype', \OC\Files\Filesystem::getMimeType($path));
  		$tmpl->assign('fileTarget', basename($linkItem['file_target']));
  		$tmpl->assign('dirToken', $linkItem['token']);
31b7f2792   Kload   Upgrade to ownclo...
148
149
150
  		$tmpl->assign('sharingToken', $token);
  		$tmpl->assign('disableSharing', true);
  		$allowPublicUploadEnabled = (bool) ($linkItem['permissions'] & OCP\PERMISSION_CREATE);
03e52840d   Kload   Init
151
152
153
154
155
156
  		if (OC_Appconfig::getValue('core', 'shareapi_allow_public_upload', 'yes') === 'no') {
  			$allowPublicUploadEnabled = false;
  		}
  		if ($linkItem['item_type'] !== 'folder') {
  			$allowPublicUploadEnabled = false;
  		}
03e52840d   Kload   Init
157
158
159
160
161
162
163
164
165
166
167
168
  		$tmpl->assign('allowPublicUploadEnabled', $allowPublicUploadEnabled);
  		$tmpl->assign('uploadMaxFilesize', $maxUploadFilesize);
  		$tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize));
  
  		$urlLinkIdentifiers= (isset($token)?'&t='.$token:'')
  							.(isset($_GET['dir'])?'&dir='.$_GET['dir']:'')
  							.(isset($_GET['file'])?'&file='.$_GET['file']:'');
  		// Show file list
  		if (\OC\Files\Filesystem::is_dir($path)) {
  			$tmpl->assign('dir', $getPath);
  
  			OCP\Util::addStyle('files', 'files');
31b7f2792   Kload   Upgrade to ownclo...
169
  			OCP\Util::addStyle('files', 'upload');
03e52840d   Kload   Init
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
  			OCP\Util::addScript('files', 'files');
  			OCP\Util::addScript('files', 'filelist');
  			OCP\Util::addscript('files', 'keyboardshortcuts');
  			$files = array();
  			$rootLength = strlen($basePath) + 1;
  			$totalSize = 0;
  			foreach (\OC\Files\Filesystem::getDirectoryContent($path) as $i) {
  				$totalSize += $i['size'];
  				$i['date'] = OCP\Util::formatDate($i['mtime']);
  				if ($i['type'] == 'file') {
  					$fileinfo = pathinfo($i['name']);
  					$i['basename'] = $fileinfo['filename'];
  					if (!empty($fileinfo['extension'])) {
  						$i['extension'] = '.' . $fileinfo['extension'];
  					} else {
  						$i['extension'] = '';
  					}
31b7f2792   Kload   Upgrade to ownclo...
187
  					$i['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($i['mimetype']);
03e52840d   Kload   Init
188
189
190
  				}
  				$i['directory'] = $getPath;
  				$i['permissions'] = OCP\PERMISSION_READ;
31b7f2792   Kload   Upgrade to ownclo...
191
  				$i['icon'] = determineIcon($i, $basePath, $token);
03e52840d   Kload   Init
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
  				$files[] = $i;
  			}
  			usort($files, "fileCmp");
  
  			// Make breadcrumb
  			$breadcrumb = array();
  			$pathtohere = '';
  			foreach (explode('/', $getPath) as $i) {
  				if ($i != '') {
  					$pathtohere .= '/' . $i;
  					$breadcrumb[] = array('dir' => $pathtohere, 'name' => $i);
  				}
  			}
  			$list = new OCP\Template('files', 'part.list', '');
  			$list->assign('files', $files);
03e52840d   Kload   Init
207
208
209
  			$list->assign('baseURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&path=');
  			$list->assign('downloadURL',
  				OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&download&path=');
31b7f2792   Kload   Upgrade to ownclo...
210
211
212
  			$list->assign('isPublic', true);
  			$list->assign('sharingtoken', $token);
  			$list->assign('sharingroot', $basePath);
03e52840d   Kload   Init
213
214
215
216
  			$breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', '');
  			$breadcrumbNav->assign('breadcrumb', $breadcrumb);
  			$breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&path=');
  			$maxUploadFilesize=OCP\Util::maxUploadFilesize($path);
31b7f2792   Kload   Upgrade to ownclo...
217
218
  			$fileHeader = (!isset($files) or count($files) > 0);
  			$emptyContent = ($allowPublicUploadEnabled and !$fileHeader);
03e52840d   Kload   Init
219
220
221
222
223
224
225
226
227
228
229
230
231
  			$folder = new OCP\Template('files', 'index', '');
  			$folder->assign('fileList', $list->fetchPage());
  			$folder->assign('breadcrumb', $breadcrumbNav->fetchPage());
  			$folder->assign('dir', $getPath);
  			$folder->assign('isCreatable', false);
  			$folder->assign('permissions', OCP\PERMISSION_READ);
  			$folder->assign('isPublic',true);
  			$folder->assign('publicUploadEnabled', 'no');
  			$folder->assign('files', $files);
  			$folder->assign('uploadMaxFilesize', $maxUploadFilesize);
  			$folder->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize));
  			$folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true)));
  			$folder->assign('usedSpacePercent', 0);
31b7f2792   Kload   Upgrade to ownclo...
232
233
234
235
236
  			$folder->assign('fileHeader', $fileHeader);
  			$folder->assign('disableSharing', true);
  			$folder->assign('trash', false);
  			$folder->assign('emptyContent', $emptyContent);
  			$folder->assign('ajaxLoad', false);
03e52840d   Kload   Init
237
  			$tmpl->assign('folder', $folder->fetchPage());
31b7f2792   Kload   Upgrade to ownclo...
238
  			$maxInputFileSize = OCP\Config::getSystemValue('maxZipInputSize', OCP\Util::computerFileSize('800 MB'));
03e52840d   Kload   Init
239
  			$allowZip = OCP\Config::getSystemValue('allowZipDownload', true)
31b7f2792   Kload   Upgrade to ownclo...
240
  						&& ( $maxInputFileSize === 0 || $totalSize <= $maxInputFileSize);
03e52840d   Kload   Init
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
  			$tmpl->assign('allowZipDownload', intval($allowZip));
  			$tmpl->assign('downloadURL',
  				OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&download&path=' . urlencode($getPath));
  		} else {
  			$tmpl->assign('dir', $dir);
  
  			// Show file preview if viewer is available
  			if ($type == 'file') {
  				$tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&download');
  			} else {
  				$tmpl->assign('downloadURL', OCP\Util::linkToPublic('files')
  										.$urlLinkIdentifiers.'&download&path='.urlencode($getPath));
  			}
  		}
  		$tmpl->printPage();
  	}
  	exit();
  } else {
  	OCP\Util::writeLog('share', 'could not resolve linkItem', \OCP\Util::DEBUG);
  }
31b7f2792   Kload   Upgrade to ownclo...
261
262
263
  
  $errorTemplate = new OCP\Template('files_sharing', 'part.404', '');
  $errorContent = $errorTemplate->fetchPage();
03e52840d   Kload   Init
264
  header('HTTP/1.0 404 Not Found');
31b7f2792   Kload   Upgrade to ownclo...
265
  OCP\Util::addStyle('files_sharing', '404');
03e52840d   Kload   Init
266
  $tmpl = new OCP\Template('', '404', 'guest');
31b7f2792   Kload   Upgrade to ownclo...
267
  $tmpl->assign('content', $errorContent);
03e52840d   Kload   Init
268
  $tmpl->printPage();