2012-11-04 17:42:18 +00:00
< ? php
// Load other apps for file previews
OC_App :: loadApps ();
// Compatibility with shared-by-link items from ownCloud 4.0
// requires old Sharing table !
// support will be removed in OC 5.0,a
if ( isset ( $_GET [ 'token' ])) {
unset ( $_GET [ 'file' ]);
$qry = \OC_DB :: prepare ( 'SELECT `source` FROM `*PREFIX*sharing` WHERE `target` = ? LIMIT 1' );
$filepath = $qry -> execute ( array ( $_GET [ 'token' ])) -> fetchOne ();
if ( isset ( $filepath )) {
$info = OC_FileCache_Cached :: get ( $filepath , '' );
if ( strtolower ( $info [ 'mimetype' ]) == 'httpd/unix-directory' ) {
$_GET [ 'dir' ] = $filepath ;
} else {
$_GET [ 'file' ] = $filepath ;
}
\OCP\Util :: writeLog ( 'files_sharing' , 'You have files that are shared by link originating from ownCloud 4.0. Redistribute the new links, because backwards compatibility will be removed in ownCloud 5.' , \OCP\Util :: WARN );
}
}
// Enf of backward compatibility
2012-11-12 13:44:00 +00:00
/**
* lookup file path and owner by fetching it from the fscache
* needed becaus OC_FileCache :: getPath ( $id , $user ) already requires the user
* @ param int $id
* @ return array
*/
function getPathAndUser ( $id ) {
$query = \OC_DB :: prepare ( 'SELECT `user`, `path` FROM `*PREFIX*fscache` WHERE `id` = ?' );
$result = $query -> execute ( array ( $id ));
$row = $result -> fetchRow ();
return $row ;
2012-11-04 17:42:18 +00:00
}
2012-11-12 13:44:00 +00:00
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' ];
if ( OCP\User :: userExists ( $shareOwner ) && $fileSource != - 1 ) {
$pathAndUser = getPathAndUser ( $linkItem [ 'file_source' ]);
$fileOwner = $pathAndUser [ 'user' ];
//if this is a reshare check the file owner also exists
if ( $shareOwner != $fileOwner && ! OCP\User :: userExists ( $fileOwner )) {
OCP\Util :: writeLog ( 'share' , 'original file owner ' . $fileOwner . ' does not exist for share ' . $linkItem [ 'id' ], \OCP\Util :: ERROR );
header ( 'HTTP/1.0 404 Not Found' );
$tmpl = new OCP\Template ( '' , '404' , 'guest' );
$tmpl -> printPage ();
exit ();
}
//mount filesystem of file owner
OC_Util :: setupFS ( $fileOwner );
if ( ! isset ( $linkItem [ 'item_type' ])) {
OCP\Util :: writeLog ( 'share' , 'No item type set for share id: ' . $linkItem [ 'id' ], \OCP\Util :: ERROR );
2012-11-04 17:42:18 +00:00
header ( 'HTTP/1.0 404 Not Found' );
$tmpl = new OCP\Template ( '' , '404' , 'guest' );
$tmpl -> printPage ();
exit ();
}
if ( isset ( $linkItem [ 'share_with' ])) {
2012-11-12 13:44:00 +00:00
// Authenticate share_with
$url = OCP\Util :: linkToPublic ( 'files' ) . '&t=' . $token ;
2012-11-04 17:42:18 +00:00
if ( isset ( $_GET [ 'file' ])) {
2012-11-12 13:44:00 +00:00
$url .= '&file=' . urlencode ( $_GET [ 'file' ]);
} else if ( isset ( $_GET [ 'dir' ])) {
$url .= '&dir=' . urlencode ( $_GET [ 'dir' ]);
2012-11-04 17:42:18 +00:00
}
if ( isset ( $_POST [ 'password' ])) {
$password = $_POST [ 'password' ];
2012-11-12 13:44:00 +00:00
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' ]))) {
$tmpl = new OCP\Template ( 'files_sharing' , 'authenticate' , 'guest' );
$tmpl -> assign ( 'URL' , $url );
$tmpl -> assign ( 'error' , true );
$tmpl -> printPage ();
exit ();
} else {
// Save item id in session for future requests
$_SESSION [ 'public_link_authenticated' ] = $linkItem [ 'id' ];
}
} 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' );
2012-11-04 17:42:18 +00:00
$tmpl -> printPage ();
exit ();
}
// Check if item id is set in session
} else if ( ! isset ( $_SESSION [ 'public_link_authenticated' ]) || $_SESSION [ 'public_link_authenticated' ] !== $linkItem [ 'id' ]) {
// Prompt for password
$tmpl = new OCP\Template ( 'files_sharing' , 'authenticate' , 'guest' );
$tmpl -> assign ( 'URL' , $url );
$tmpl -> printPage ();
exit ();
}
}
2012-11-12 13:44:00 +00:00
$basePath = substr ( $pathAndUser [ 'path' ] , strlen ( '/' . $fileOwner . '/files' ));
$path = $basePath ;
2012-11-04 17:42:18 +00:00
if ( isset ( $_GET [ 'path' ])) {
$path .= $_GET [ 'path' ];
}
2012-11-12 13:44:00 +00:00
if ( ! $path || ! OC_Filesystem :: isValidPath ( $path ) || ! OC_Filesystem :: file_exists ( $path )) {
OCP\Util :: writeLog ( 'share' , 'Invalid path ' . $path . ' for share id ' . $linkItem [ 'id' ], \OCP\Util :: ERROR );
header ( 'HTTP/1.0 404 Not Found' );
$tmpl = new OCP\Template ( '' , '404' , 'guest' );
$tmpl -> printPage ();
exit ();
}
$dir = dirname ( $path );
$file = basename ( $path );
2012-11-04 17:42:18 +00:00
// Download the file
if ( isset ( $_GET [ 'download' ])) {
2012-11-12 13:44:00 +00:00
if ( isset ( $_GET [ 'path' ]) && $_GET [ 'path' ] !== '' ) {
2012-11-04 17:42:18 +00:00
if ( isset ( $_GET [ 'files' ]) ) { // download selected files
OC_Files :: get ( $path , $_GET [ 'files' ], $_SERVER [ 'REQUEST_METHOD' ] == 'HEAD' ? true : false );
2012-11-12 13:44:00 +00:00
} else if ( isset ( $_GET [ 'path' ]) && $_GET [ 'path' ] != '' ) { // download a file from a shared directory
OC_Files :: get ( $dir , $file , $_SERVER [ 'REQUEST_METHOD' ] == 'HEAD' ? true : false );
2012-11-04 17:42:18 +00:00
} else { // download the whole shared directory
2012-11-12 13:44:00 +00:00
OC_Files :: get ( $dir , $file , $_SERVER [ 'REQUEST_METHOD' ] == 'HEAD' ? true : false );
2012-11-04 17:42:18 +00:00
}
} else { // download a single shared file
2012-11-12 13:44:00 +00:00
OC_Files :: get ( $dir , $file , $_SERVER [ 'REQUEST_METHOD' ] == 'HEAD' ? true : false );
2012-11-04 17:42:18 +00:00
}
} else {
OCP\Util :: addStyle ( 'files_sharing' , 'public' );
OCP\Util :: addScript ( 'files_sharing' , 'public' );
OCP\Util :: addScript ( 'files' , 'fileactions' );
$tmpl = new OCP\Template ( 'files_sharing' , 'public' , 'base' );
2012-11-12 13:44:00 +00:00
$tmpl -> assign ( 'uidOwner' , $shareOwner );
$tmpl -> assign ( 'dir' , $dir );
$tmpl -> assign ( 'filename' , $file );
$tmpl -> assign ( 'mimetype' , OC_Filesystem :: getMimeType ( $path ));
if ( isset ( $_GET [ 'path' ])) {
$getPath = $_GET [ 'path' ];
} else {
$getPath = '' ;
}
2012-11-04 17:42:18 +00:00
// Show file list
if ( OC_Filesystem :: is_dir ( $path )) {
OCP\Util :: addStyle ( 'files' , 'files' );
OCP\Util :: addScript ( 'files' , 'files' );
OCP\Util :: addScript ( 'files' , 'filelist' );
$files = array ();
2012-11-12 13:44:00 +00:00
$rootLength = strlen ( $basePath ) + 1 ;
2012-11-04 17:42:18 +00:00
foreach ( OC_Files :: getDirectoryContent ( $path ) as $i ) {
$i [ 'date' ] = OCP\Util :: formatDate ( $i [ 'mtime' ]);
if ( $i [ 'type' ] == 'file' ) {
$fileinfo = pathinfo ( $i [ 'name' ]);
$i [ 'basename' ] = $fileinfo [ 'filename' ];
$i [ 'extension' ] = isset ( $fileinfo [ 'extension' ]) ? ( '.' . $fileinfo [ 'extension' ]) : '' ;
}
2012-11-12 13:44:00 +00:00
$i [ 'directory' ] = '/' . substr ( $i [ 'directory' ], $rootLength );
2012-11-04 17:42:18 +00:00
if ( $i [ 'directory' ] == '/' ) {
$i [ 'directory' ] = '' ;
}
2012-11-11 18:58:54 +00:00
$i [ 'permissions' ] = OCP\PERMISSION_READ ;
2012-11-04 17:42:18 +00:00
$files [] = $i ;
}
// Make breadcrumb
$breadcrumb = array ();
$pathtohere = '' ;
2012-11-12 13:44:00 +00:00
//add base breadcrumb
$breadcrumb [] = array ( 'dir' => '/' , 'name' => basename ( $basePath ));
//add subdir breadcrumbs
foreach ( explode ( '/' , urldecode ( $_GET [ 'path' ])) as $i ) {
2012-11-04 17:42:18 +00:00
if ( $i != '' ) {
2012-11-12 13:44:00 +00:00
$pathtohere .= '/' . $i ;
$breadcrumb [] = array ( 'dir' => $pathtohere , 'name' => $i );
2012-11-04 17:42:18 +00:00
}
}
2012-11-12 13:44:00 +00:00
2012-11-04 17:42:18 +00:00
$list = new OCP\Template ( 'files' , 'part.list' , '' );
$list -> assign ( 'files' , $files , false );
$list -> assign ( 'publicListView' , true );
2012-11-12 13:44:00 +00:00
$list -> assign ( 'baseURL' , OCP\Util :: linkToPublic ( 'files' ) . '&t=' . $token . '&path=' , false );
$list -> assign ( 'downloadURL' , OCP\Util :: linkToPublic ( 'files' ) . '&t=' . $token . '&download&path=' , false );
2012-11-04 17:42:18 +00:00
$breadcrumbNav = new OCP\Template ( 'files' , 'part.breadcrumb' , '' );
$breadcrumbNav -> assign ( 'breadcrumb' , $breadcrumb , false );
2012-11-12 13:44:00 +00:00
$breadcrumbNav -> assign ( 'baseURL' , OCP\Util :: linkToPublic ( 'files' ) . '&t=' . $token . '&path=' , false );
2012-11-04 17:42:18 +00:00
$folder = new OCP\Template ( 'files' , 'index' , '' );
$folder -> assign ( 'fileList' , $list -> fetchPage (), false );
$folder -> assign ( 'breadcrumb' , $breadcrumbNav -> fetchPage (), false );
$folder -> assign ( 'isCreatable' , false );
$folder -> assign ( 'permissions' , 0 );
$folder -> assign ( 'files' , $files );
$folder -> assign ( 'uploadMaxFilesize' , 0 );
$folder -> assign ( 'uploadMaxHumanFilesize' , 0 );
$folder -> assign ( 'allowZipDownload' , intval ( OCP\Config :: getSystemValue ( 'allowZipDownload' , true )));
$tmpl -> assign ( 'folder' , $folder -> fetchPage (), false );
$tmpl -> assign ( 'allowZipDownload' , intval ( OCP\Config :: getSystemValue ( 'allowZipDownload' , true )));
2012-11-12 13:44:00 +00:00
$tmpl -> assign ( 'downloadURL' , OCP\Util :: linkToPublic ( 'files' ) . '&t=' . $token . '&download&path=' . urlencode ( $getPath ));
2012-11-04 17:42:18 +00:00
} else {
// Show file preview if viewer is available
if ( $type == 'file' ) {
2012-11-12 13:44:00 +00:00
$tmpl -> assign ( 'downloadURL' , OCP\Util :: linkToPublic ( 'files' ) . '&t=' . $token . '&download' );
2012-11-04 17:42:18 +00:00
} else {
2012-11-12 13:44:00 +00:00
$tmpl -> assign ( 'downloadURL' , OCP\Util :: linkToPublic ( 'files' ) . '&t=' . $token . '&download&path=' . urlencode ( $getPath ));
2012-11-04 17:42:18 +00:00
}
}
$tmpl -> printPage ();
}
exit ();
}
}
2012-11-12 13:44:00 +00:00
} else {
OCP\Util :: writeLog ( 'share' , 'Missing token' , \OCP\Util :: DEBUG );
2012-11-04 17:42:18 +00:00
}
header ( 'HTTP/1.0 404 Not Found' );
$tmpl = new OCP\Template ( '' , '404' , 'guest' );
$tmpl -> printPage ();