2021-01-12 13:28:04 +03:00
< ? php
2021-01-14 15:31:15 +03:00
/**
2021-01-12 13:28:04 +03:00
* @ copyright Copyright ( c ) 2021 Julius Härtl < jus @ bitgrid . net >
*
* @ author Julius Härtl < jus @ bitgrid . net >
*
* @ license GNU AGPL version 3 or any later version
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation , either version 3 of the
* License , or ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU Affero General Public License for more details .
*
* You should have received a copy of the GNU Affero General Public License
* along with this program . If not , see < http :// www . gnu . org / licenses />.
*
*/
declare ( strict_types = 1 );
namespace OC\Files\Template ;
2021-01-28 13:50:40 +03:00
use OC\AppFramework\Bootstrap\Coordinator ;
2021-01-19 13:20:50 +03:00
use OC\Files\Cache\Scanner ;
2021-01-29 10:43:17 +03:00
use OC\Files\Filesystem ;
2021-01-12 13:28:04 +03:00
use OCP\EventDispatcher\IEventDispatcher ;
use OCP\Files\Folder ;
use OCP\Files\File ;
use OCP\Files\GenericFileException ;
use OCP\Files\IRootFolder ;
use OCP\Files\Node ;
use OCP\Files\NotFoundException ;
2021-01-19 18:38:51 +03:00
use OCP\Files\NotPermittedException ;
2021-01-28 13:50:40 +03:00
use OCP\Files\Template\FileCreatedFromTemplateEvent ;
2021-01-12 13:28:04 +03:00
use OCP\Files\Template\ICustomTemplateProvider ;
use OCP\Files\Template\ITemplateManager ;
use OCP\Files\Template\Template ;
use OCP\Files\Template\TemplateFileCreator ;
use OCP\IConfig ;
use OCP\IPreview ;
use OCP\IServerContainer ;
2021-01-29 10:56:32 +03:00
use OCP\IUserManager ;
2021-01-12 13:28:04 +03:00
use OCP\IUserSession ;
use OCP\L10N\IFactory ;
use Psr\Log\LoggerInterface ;
class TemplateManager implements ITemplateManager {
2021-01-28 13:50:40 +03:00
private $registeredTypes = [];
2021-01-12 13:28:04 +03:00
private $types = [];
2021-01-28 13:50:40 +03:00
/** @var array|null */
private $providers = null ;
2021-01-12 13:28:04 +03:00
private $serverContainer ;
private $eventDispatcher ;
private $rootFolder ;
2021-01-29 10:56:32 +03:00
private $userManager ;
2021-01-12 13:28:04 +03:00
private $previewManager ;
private $config ;
private $l10n ;
private $logger ;
private $userId ;
2021-01-19 13:20:50 +03:00
private $l10nFactory ;
2021-01-28 13:50:40 +03:00
/** @var Coordinator */
private $bootstrapCoordinator ;
2021-01-12 13:28:04 +03:00
public function __construct (
IServerContainer $serverContainer ,
IEventDispatcher $eventDispatcher ,
2021-01-28 13:50:40 +03:00
Coordinator $coordinator ,
2021-01-12 13:28:04 +03:00
IRootFolder $rootFolder ,
IUserSession $userSession ,
2021-01-29 10:56:32 +03:00
IUserManager $userManager ,
2021-01-12 13:28:04 +03:00
IPreview $previewManager ,
IConfig $config ,
2021-01-19 13:20:50 +03:00
IFactory $l10nFactory ,
2021-01-12 13:28:04 +03:00
LoggerInterface $logger
) {
$this -> serverContainer = $serverContainer ;
$this -> eventDispatcher = $eventDispatcher ;
2021-01-28 13:50:40 +03:00
$this -> bootstrapCoordinator = $coordinator ;
2021-01-12 13:28:04 +03:00
$this -> rootFolder = $rootFolder ;
2021-01-29 10:56:32 +03:00
$this -> userManager = $userManager ;
2021-01-12 13:28:04 +03:00
$this -> previewManager = $previewManager ;
$this -> config = $config ;
2021-01-19 13:20:50 +03:00
$this -> l10nFactory = $l10nFactory ;
$this -> l10n = $l10nFactory -> get ( 'lib' );
2021-01-12 13:28:04 +03:00
$this -> logger = $logger ;
$user = $userSession -> getUser ();
$this -> userId = $user ? $user -> getUID () : null ;
}
2021-01-28 13:50:40 +03:00
public function registerTemplateFileCreator ( callable $callback ) : void {
$this -> registeredTypes [] = $callback ;
2021-01-12 13:28:04 +03:00
}
public function getRegisteredProviders () : array {
if ( $this -> providers !== null ) {
return $this -> providers ;
}
2021-01-28 13:50:40 +03:00
$context = $this -> bootstrapCoordinator -> getRegistrationContext ();
2021-01-12 13:28:04 +03:00
$this -> providers = [];
2021-01-28 13:50:40 +03:00
foreach ( $context -> getTemplateProviders () as $provider ) {
$this -> providers [ $provider [ 'class' ]] = $this -> serverContainer -> get ( $provider [ 'class' ]);
2021-01-12 13:28:04 +03:00
}
return $this -> providers ;
}
2021-01-28 13:50:40 +03:00
public function getTypes () : array {
foreach ( $this -> registeredTypes as $registeredType ) {
$this -> types [] = $registeredType ();
2021-01-19 18:38:51 +03:00
}
2021-01-28 13:50:40 +03:00
return $this -> types ;
}
2021-01-19 18:38:51 +03:00
2021-01-28 13:50:40 +03:00
public function listCreators () : array {
$types = $this -> getTypes ();
usort ( $types , function ( TemplateFileCreator $a , TemplateFileCreator $b ) {
2021-01-19 18:38:51 +03:00
return $a -> getOrder () - $b -> getOrder ();
});
2021-01-28 13:50:40 +03:00
return $types ;
}
2021-01-19 18:38:51 +03:00
2021-01-28 13:50:40 +03:00
public function listTemplates () : array {
2021-01-12 13:28:04 +03:00
return array_map ( function ( TemplateFileCreator $entry ) {
return array_merge ( $entry -> jsonSerialize (), [
'templates' => $this -> getTemplateFiles ( $entry )
]);
2021-01-28 13:50:40 +03:00
}, $this -> listCreators ());
2021-01-12 13:28:04 +03:00
}
/**
* @ param string $filePath
* @ param string $templateId
* @ return array
* @ throws GenericFileException
*/
public function createFromTemplate ( string $filePath , string $templateId = '' , string $templateType = 'user' ) : array {
$userFolder = $this -> rootFolder -> getUserFolder ( $this -> userId );
try {
$userFolder -> get ( $filePath );
throw new GenericFileException ( $this -> l10n -> t ( 'File already exists' ));
} catch ( NotFoundException $e ) {
}
try {
$targetFile = $userFolder -> newFile ( $filePath );
if ( $templateType === 'user' && $templateId !== '' ) {
$template = $userFolder -> get ( $templateId );
$template -> copy ( $targetFile -> getPath ());
} else {
$matchingProvider = array_filter ( $this -> getRegisteredProviders (), function ( ICustomTemplateProvider $provider ) use ( $templateType ) {
return $templateType === get_class ( $provider );
});
$provider = array_shift ( $matchingProvider );
if ( $provider ) {
$template = $provider -> getCustomTemplate ( $templateId );
$template -> copy ( $targetFile -> getPath ());
}
}
2021-01-28 13:50:40 +03:00
$this -> eventDispatcher -> dispatchTyped ( new FileCreatedFromTemplateEvent ( $template , $targetFile ));
2021-01-12 13:28:04 +03:00
return $this -> formatFile ( $userFolder -> get ( $filePath ));
} catch ( \Exception $e ) {
$this -> logger -> error ( $e -> getMessage (), [ 'exception' => $e ]);
throw new GenericFileException ( $this -> l10n -> t ( 'Failed to create file from template' ));
}
}
/**
* @ return Folder
* @ throws \OCP\Files\NotFoundException
* @ throws \OCP\Files\NotPermittedException
* @ throws \OC\User\NoUserException
*/
private function getTemplateFolder () : Node {
2021-01-19 18:38:51 +03:00
if ( $this -> getTemplatePath () !== '' ) {
return $this -> rootFolder -> getUserFolder ( $this -> userId ) -> get ( $this -> getTemplatePath ());
}
throw new NotFoundException ();
2021-01-12 13:28:04 +03:00
}
private function getTemplateFiles ( TemplateFileCreator $type ) : array {
$templates = [];
foreach ( $this -> getRegisteredProviders () as $provider ) {
foreach ( $type -> getMimetypes () as $mimetype ) {
foreach ( $provider -> getCustomTemplates ( $mimetype ) as $template ) {
$templates [] = $template ;
}
}
}
try {
$userTemplateFolder = $this -> getTemplateFolder ();
} catch ( \Exception $e ) {
return $templates ;
}
foreach ( $type -> getMimetypes () as $mimetype ) {
foreach ( $userTemplateFolder -> searchByMime ( $mimetype ) as $templateFile ) {
$template = new Template (
'user' ,
$this -> rootFolder -> getUserFolder ( $this -> userId ) -> getRelativePath ( $templateFile -> getPath ()),
$templateFile
);
$template -> setHasPreview ( $this -> previewManager -> isAvailable ( $templateFile ));
$templates [] = $template ;
}
}
return $templates ;
}
/**
* @ param Node | File $file
* @ return array
* @ throws NotFoundException
* @ throws \OCP\Files\InvalidPathException
*/
private function formatFile ( Node $file ) : array {
return [
'basename' => $file -> getName (),
'etag' => $file -> getEtag (),
'fileid' => $file -> getId (),
'filename' => $this -> rootFolder -> getUserFolder ( $this -> userId ) -> getRelativePath ( $file -> getPath ()),
'lastmod' => $file -> getMTime (),
'mime' => $file -> getMimetype (),
'size' => $file -> getSize (),
'type' => $file -> getType (),
'hasPreview' => $this -> previewManager -> isAvailable ( $file )
];
}
public function hasTemplateDirectory () : bool {
try {
$this -> getTemplateFolder ();
return true ;
} catch ( \Exception $e ) {
}
return false ;
}
public function setTemplatePath ( string $path ) : void {
$this -> config -> setUserValue ( $this -> userId , 'core' , 'templateDirectory' , $path );
}
public function getTemplatePath () : string {
2021-01-19 18:38:51 +03:00
return $this -> config -> getUserValue ( $this -> userId , 'core' , 'templateDirectory' , '' );
2021-01-12 13:28:04 +03:00
}
2021-01-19 18:38:51 +03:00
public function initializeTemplateDirectory ( string $path = null , string $userId = null , $copyTemplates = true ) : string {
2021-01-12 13:28:04 +03:00
if ( $userId !== null ) {
$this -> userId = $userId ;
}
2021-01-19 13:20:50 +03:00
$defaultSkeletonDirectory = \OC :: $SERVERROOT . '/core/skeleton' ;
$defaultTemplateDirectory = \OC :: $SERVERROOT . '/core/skeleton/Templates' ;
$skeletonPath = $this -> config -> getSystemValue ( 'skeletondirectory' , $defaultSkeletonDirectory );
$skeletonTemplatePath = $this -> config -> getSystemValue ( 'templatedirectory' , $defaultTemplateDirectory );
2021-01-19 18:38:51 +03:00
$isDefaultSkeleton = $skeletonPath === $defaultSkeletonDirectory ;
$isDefaultTemplates = $skeletonTemplatePath === $defaultTemplateDirectory ;
2021-01-29 10:56:32 +03:00
$userLang = $this -> l10nFactory -> getUserLanguage ( $this -> userManager -> get ( $this -> userId ));
2021-01-19 13:20:50 +03:00
2021-01-12 13:28:04 +03:00
try {
2021-01-19 13:20:50 +03:00
$l10n = $this -> l10nFactory -> get ( 'lib' , $userLang );
$userFolder = $this -> rootFolder -> getUserFolder ( $this -> userId );
$userTemplatePath = $path ? ? $l10n -> t ( 'Templates' ) . '/' ;
2021-01-19 18:38:51 +03:00
// Initial user setup without a provided path
if ( $path === null ) {
// All locations are default so we just need to rename the directory to the users language
2021-01-26 23:32:23 +03:00
if ( $isDefaultSkeleton && $isDefaultTemplates ) {
if ( ! $userFolder -> nodeExists ( 'Templates' )) {
return '' ;
}
2021-01-29 10:43:17 +03:00
$newPath = Filesystem :: normalizePath ( $userFolder -> getPath () . '/' . $userTemplatePath );
2021-01-19 18:38:51 +03:00
if ( $newPath !== $userFolder -> get ( 'Templates' ) -> getPath ()) {
$userFolder -> get ( 'Templates' ) -> move ( $newPath );
}
$this -> setTemplatePath ( $userTemplatePath );
return $userTemplatePath ;
2021-01-19 13:20:50 +03:00
}
2021-01-19 18:38:51 +03:00
if ( $isDefaultSkeleton && ! empty ( $skeletonTemplatePath ) && ! $isDefaultTemplates && $userFolder -> nodeExists ( 'Templates' )) {
2021-01-19 13:20:50 +03:00
$shippedSkeletonTemplates = $userFolder -> get ( 'Templates' );
$shippedSkeletonTemplates -> delete ();
}
2021-01-19 18:38:51 +03:00
}
try {
$folder = $userFolder -> newFolder ( $userTemplatePath );
} catch ( NotPermittedException $e ) {
$folder = $userFolder -> get ( $userTemplatePath );
}
$folderIsEmpty = count ( $folder -> getDirectoryListing ()) === 0 ;
if ( ! $copyTemplates ) {
2021-01-19 13:20:50 +03:00
$this -> setTemplatePath ( $userTemplatePath );
2021-01-19 18:38:51 +03:00
return $userTemplatePath ;
}
if ( ! $isDefaultTemplates && $folderIsEmpty ) {
$localizedSkeletonTemplatePath = $this -> getLocalizedTemplatePath ( $skeletonTemplatePath , $userLang );
if ( ! empty ( $localizedSkeletonTemplatePath ) && file_exists ( $localizedSkeletonTemplatePath )) {
\OC_Util :: copyr ( $localizedSkeletonTemplatePath , $folder );
2021-01-29 11:40:46 +03:00
$userFolder -> getStorage () -> getScanner () -> scan ( $folder -> getInternalPath (), Scanner :: SCAN_RECURSIVE );
2021-01-19 18:38:51 +03:00
$this -> setTemplatePath ( $userTemplatePath );
return $userTemplatePath ;
}
2021-01-19 13:20:50 +03:00
}
2021-01-19 18:38:51 +03:00
if ( $path !== null && $isDefaultSkeleton && $isDefaultTemplates && $folderIsEmpty ) {
$localizedSkeletonPath = $this -> getLocalizedTemplatePath ( $skeletonPath . '/Templates' , $userLang );
if ( ! empty ( $localizedSkeletonPath ) && file_exists ( $localizedSkeletonPath )) {
\OC_Util :: copyr ( $localizedSkeletonPath , $folder );
2021-01-29 11:40:46 +03:00
$userFolder -> getStorage () -> getScanner () -> scan ( $folder -> getInternalPath (), Scanner :: SCAN_RECURSIVE );
2021-01-19 18:38:51 +03:00
$this -> setTemplatePath ( $userTemplatePath );
return $userTemplatePath ;
}
}
$this -> setTemplatePath ( $path ? ? '' );
return $this -> getTemplatePath ();
2021-01-19 13:20:50 +03:00
} catch ( \Throwable $e ) {
2021-01-19 18:38:51 +03:00
$this -> logger -> error ( 'Failed to initialize templates directory to user language ' . $userLang . ' for ' . $userId , [ 'app' => 'files_templates' , 'exception' => $e ]);
2021-01-12 13:28:04 +03:00
}
2021-01-19 18:38:51 +03:00
$this -> setTemplatePath ( '' );
return $this -> getTemplatePath ();
2021-01-19 13:20:50 +03:00
}
private function getLocalizedTemplatePath ( string $skeletonTemplatePath , string $userLang ) {
$localizedSkeletonTemplatePath = str_replace ( '{lang}' , $userLang , $skeletonTemplatePath );
if ( ! file_exists ( $localizedSkeletonTemplatePath )) {
$dialectStart = strpos ( $userLang , '_' );
if ( $dialectStart !== false ) {
$localizedSkeletonTemplatePath = str_replace ( '{lang}' , substr ( $userLang , 0 , $dialectStart ), $skeletonTemplatePath );
}
if ( $dialectStart === false || ! file_exists ( $localizedSkeletonTemplatePath )) {
$localizedSkeletonTemplatePath = str_replace ( '{lang}' , 'default' , $skeletonTemplatePath );
}
}
return $localizedSkeletonTemplatePath ;
2021-01-12 13:28:04 +03:00
}
}