mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-21 22:04:00 -07:00
Updated and improved API respones.
This commit is contained in:
parent
387e6c8e0a
commit
859e65647f
33 changed files with 254 additions and 18 deletions
32
web/api/v1/schedule/backup/index.php
Normal file
32
web/api/v1/schedule/backup/index.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
|
||||
<?php
|
||||
// Init
|
||||
error_reporting(NULL);
|
||||
ob_start();
|
||||
session_start();
|
||||
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
||||
|
||||
$v_username = escapeshellarg($user);
|
||||
exec (VESTA_CMD."v-schedule-user-backup ".$v_username, $output, $return_var);
|
||||
if ($return_var == 0) {
|
||||
$_SESSION['error_msg'] = __('BACKUP_SCHEDULED');
|
||||
} else {
|
||||
$_SESSION['error_msg'] = implode('<br>', $output);
|
||||
if (empty($_SESSION['error_msg'])) {
|
||||
$_SESSION['error_msg'] = __('Error: vesta did not return any output.');
|
||||
}
|
||||
|
||||
if ($return_var == 4) {
|
||||
$_SESSION['error_msg'] = __('BACKUP_EXISTS');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$result = array(
|
||||
'ok' => $_SESSION['ok_msg'],
|
||||
'error' => $_SESSION['error_msg'],
|
||||
);
|
||||
|
||||
echo json_encode($result);
|
||||
unset($_SESSION['error_msg']);
|
||||
unset($_SESSION['ok_msg']);
|
Loading…
Add table
Add a link
Reference in a new issue