mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-21 15:10:25 +00:00
Update GitRepository.php
This commit is contained in:
parent
5db9264ded
commit
f8efe85ab6
1 changed files with 18 additions and 3 deletions
|
@ -248,10 +248,25 @@ class GitRepository extends Model
|
|||
|
||||
file_put_contents($shellFile, $shellContent);
|
||||
|
||||
shell_exec('chmod +x ' . $shellFile);
|
||||
shell_exec('chown '.$findHostingSubscription->system_username.':'.$findHostingSubscription->system_username.' ' . $shellFile);
|
||||
|
||||
shell_exec('su -m ' . $findHostingSubscription->system_username . ' -c "bash '.$shellFile.' >> ' . $shellLog . ' && phyre-php /usr/local/phyre/web/artisan git-repository:mark-as-cloned '.$this->id.' &"');
|
||||
$gitExecutorTempPath = storage_path('app/git/tmp');
|
||||
shell_exec('mkdir -p ' . $gitExecutorTempPath);
|
||||
|
||||
$gitExecutorShellFile = $gitExecutorTempPath . '/git-clone-' . $this->id . '.sh';
|
||||
$gitExecutorShellFileLog = $gitExecutorTempPath . '/git-clone-' . $this->id . '.log';
|
||||
|
||||
$gitExecutorContent = view('actions.git.git-executor', [
|
||||
'shellFile' => $shellFile,
|
||||
'shellLog' => $shellLog,
|
||||
'systemUsername' => $findHostingSubscription->system_username,
|
||||
'selfFile' => $gitExecutorShellFile,
|
||||
'afterCommand' => 'phyre-php /usr/local/phyre/web/artisan git-repository:mark-as-cloned '.$this->id,
|
||||
])->render();
|
||||
|
||||
file_put_contents($gitExecutorShellFile, $gitExecutorContent);
|
||||
|
||||
shell_exec('chmod +x ' . $gitExecutorShellFile);
|
||||
shell_exec('bash ' . $gitExecutorShellFile . ' >> ' . $gitExecutorShellFileLog . ' &');
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue