2024-04-16 23:36:57 +02:00
< ? php
namespace App\Services ;
use ReallySimpleJWT\Token ;
use ReallySimpleJWT\Exception\BuildException ;
use Carbon\Carbon ;
2024-04-18 22:36:05 +02:00
use function _\find ;
2024-04-16 23:36:57 +02:00
class InitService
{
protected $docs ;
public function __construct ( DocService $docService )
{
$this -> docs = $docService ;
}
private static function validSecret ( $length )
{
$alphanum = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789' ;
$special = '*&!@%^#$' ;
$alphabet = $alphanum . $special ;
$random = openssl_random_pseudo_bytes ( $length );
$alphabet_length = strlen ( $alphabet );
$string = '' ;
for ( $i = 0 ; $i < $length ; ++ $i ) {
$string .= $alphabet [ ord ( $random [ $i ]) % $alphabet_length ];
}
//secret needs to be a valid token
if ( $length == 12 ) {
try {
$secret = Token :: create ( 12 , $string , time () + 3600 , 'localhost' );
return $string ;
} catch ( BuildException $e ) {
//bad secret, so try agiain
return self :: validSecret ( 12 );
}
if ( Token :: validate ( $key , $string )) {
return $string ;
} else {
return self :: validSecret ( 12 );
}
}
}
public function fresh ( $body )
{
//grab template files
$newFolks = json_decode (
file_get_contents ( '../content/config/init/folks-template.json' ),
true
);
$newSettings = json_decode (
file_get_contents ( '../content/config/init/settings-template.json' ),
true
);
//get form values
//$body = $request->getParsedBody();
$handle = $body -> new_member_handle ;
$email = $body -> new_member_email ;
$pass = $body -> new_member_pass ;
$title = $body -> new_member_title ;
$now = Carbon :: now ();
//setup folks config
$hash = password_hash ( $pass , PASSWORD_DEFAULT );
$newFolks [ 0 ][ 'id' ] = 0 ;
$newFolks [ 0 ][ 'handle' ] = $handle ;
$newFolks [ 0 ][ 'email' ] = $email ;
$newFolks [ 0 ][ 'password' ] = $hash ;
$newFolks [ 0 ][ 'key' ] = password_hash ( $email , PASSWORD_DEFAULT );
$newFolks [ 0 ][ 'secret' ] = self :: validSecret ( 12 );
$newFolks [ 0 ][ 'role' ] = 'hnic' ;
$newFolks [ 0 ][ 'created' ] = $now -> format ( " Y-m-d \T H:i:sP " );
$newFolks [ 0 ][ 'updated' ] = $now -> format ( " Y-m-d \T H:i:sP " );
//set up settings config
$newSettings [ 'global' ][ 'title' ] = $title ;
//create index file
$index = [
'id' => 1 ,
'uuid' => createUUID (),
'title' => 'FIRST!' ,
'imageList' => '/assets/images/global/default-bg.jpg' ,
'fileList' => '' ,
'path' => 'content/pages/start' ,
'layout' => 'index' ,
'tags' => 'start, welcome' ,
'author' => $handle ,
'created' => $now -> format ( " Y-m-d \T H:i:sP " ),
'updated' => $now -> format ( " Y-m-d \T H:i:sP " ),
'deleted' => 'false' ,
'slug' => 'first' ,
'menu' => 'false' ,
'featured' => 'false' ,
'published' => 'true' ,
'content' => " # F**k Yes \n \n If you're seeing this, you're up and running. NICE WORK! \n \n From here, feel free to start dropping pages to your heart's content. \n \n For some tips about using Fipamo, check out the ![docs](https://code.playvicio.us/Are0h/Fipamo/wiki/02-Usage) \n \n All good? Feel free to edit this page to whatever you want! \n \n YOU'RE THE CAPTAIN NOW. " ,
];
//once all files created, write down
$this -> docs -> writeSettings ( $newSettings , '../content/config/settings.json' );
$this -> docs -> writeSettings ( $newFolks , '../content/config/folks.json' );
$this -> docs -> writeSettings ([], '../content/config/tags.json' );
$object = ( object ) $index ;
$this -> docs -> writePages (
'create' ,
'start' ,
'../content/pages/start/index.md' ,
$this -> docs :: objectToMD ( $object )
);
$result = [ 'type' => 'blogInitGood' , 'message' => 'Site Created' ];
return $result ;
}
2024-04-18 22:36:05 +02:00
public function restore ( $request )
{
$file = $request -> file ( 'backup-upload' );
$type = $file -> extension ();
$size = $file -> getSize ();
$name = $file -> getClientOriginalName ();
$file -> move ( '../content' . '/' , $name );
$zip = new \ZipArchive ();
$result = [];
$tempDir = '../content/_temp' ;
if ( $zip -> open ( '../content' . '/' . $name ) === true ) {
$folks = json_decode ( $zip -> getFromName ( 'config/folks.json' ), true );
$found = find ( $folks , [ 'handle' => $request -> restore_member_handle ]);
if ( $found ) {
if ( password_verify ( $request -> restore_member_pass , $found [ 'password' ])) {
//restore blog images by importing from old site
$blogImages = json_decode ( $zip -> getFromName ( 'images/blog.json' ), true );
$blogImageFail = 0 ;
foreach ( $blogImages as $image ) {
$path = explode ( '/' , $image [ 'path' ]);
$year = $path [ 5 ];
$month = $path [ 6 ];
$blogDir = '../public/assets/images/blog/' . $year . '/' . $month ;
if ( ! is_dir ( $blogDir )) {
mkdir ( $blogDir , 0755 , true );
}
$externalPath = '/assets/images/blog/' . $year . '/' . $month ;
$image_url = $request -> restore_former_url . $externalPath . '/' . $image [ 'file' ];
try {
file_put_contents (
$image [ 'path' ] . '/' . $image [ 'file' ],
file_get_contents ( $image_url )
);
} catch ( \Throwable $e ) {
$blogImageFail ++ ;
}
}
//restore user images by importing from old site
$userImages = json_decode ( $zip -> getFromName ( 'images/user.json' ), true );
$userImageFail = 0 ;
foreach ( $userImages as $image ) {
$path = explode ( '/' , $image [ 'path' ]);
$year = $path [ 5 ];
$month = $path [ 6 ];
$userDir = '../public/assets/images/user/' . $year . '/' . $month ;
if ( ! is_dir ( $userDir )) {
mkdir ( $userDir , 0755 , true );
}
$externalPath = '/assets/images/user/' . $year . '/' . $month ;
$image_url = $request -> restore_former_url . $externalPath . '/' . $image [ 'file' ];
try {
file_put_contents (
$image [ 'path' ] . '/' . $image [ 'file' ],
file_get_contents ( $image_url )
);
} catch ( \Throwable $e ) {
$userImageFail ++ ;
}
}
$newFolks = [];
if ( ! isset ( $found [ 'secret' ])) {
$found [ 'secret' ] = self :: validSecret ( 12 );
}
array_push ( $newFolks , $found );
//make temp folder and dump file in there
mkdir ( $tempDir , 0755 , true );
$zip -> extractTo ( $tempDir );
//load up old config file
$newConfig = json_decode (
file_get_contents ( $tempDir . '/config/settings.json' ),
true
);
//check for key, add if not there
if ( ! isset ( $newConfig [ 'global' ][ 'externalAPI' ])) {
$newConfig [ 'global' ][ 'externalAPI' ] = 'false' ;
}
//make dir and write new config files
if ( ! is_dir ( '../content/config/' )) {
mkdir ( '../content/config/' , 0755 , true );
}
$this -> docs -> writeSettings ( $newConfig , '../content/config/settings.json' );
$this -> docs -> writeSettings ( $newFolks , '../content/config/folks.json' );
rename ( $tempDir . '/config/tags.json' , '../content/config/tags.json' );
//move saved markdown pages
rename ( $tempDir . '/content/pages/' , '../content/pages' );
//clean up temp dir and zip file
$this -> docs :: deleteFolder ( $tempDir );
$zip -> close ();
$zipPath = '../content/' . $name ;
unlink ( $zipPath );
$result = [
'type' => 'requestGood' ,
'message' => 'Site Restored! Redirecting' ,
];
} else {
$result = [
'type' => 'requestLame' ,
'message' => 'Check that password, champ.' ,
];
}
} else {
$result = [
'type' => 'requestLame' ,
'message' => 'Could not open backup. RATS!' ,
];
}
};
return $result ;
}
2024-04-16 23:36:57 +02:00
}