null, 'tag' => AKEEBA_BACKUP_ORIGIN, 'backupid' => null, ); $defConfig = array_merge($defConfig, $parameters); $profile = $filter->clean($defConfig['profile'], 'int'); $tag = $filter->clean($defConfig['tag'], 'cmd'); $backupid = $filter->clean($defConfig['backupid'], 'cmd'); if (is_null($backupid) && defined('AKEEBA_BACKUP_ID')) { $tag = AKEEBA_BACKUP_ID; } if (empty($backupid)) { throw new \RuntimeException("JSON API :: stepBackup -- You have not provided the required backupid parameter. This parameter is MANDATORY since May 2016. Please update your client software to include this parameter."); } $container = Application::getInstance()->getContainer(); $session = $container->segment; if (!empty($profile)) { $profile = max(1, $profile); // Make sure $profile is a positive integer >= 1 $session->set('profile', $profile); define('AKEEBA_PROFILE', $profile); } /** @var Backup $model */ $model = Model::getTmpInstance($container->application_name, 'Backup', $container); $model->setState('tag', $tag); $model->setState('backupid', $backupid); $array = $model->stepBackup(false); if ($array['Error'] != '') { throw new \RuntimeException('A backup error has occurred: ' . $array['Error'], 500); } // BackupID contains the numeric backup record ID. backupid contains the backup id (usually in the form id123) $statistics = Factory::getStatistics(); $array['BackupID'] = $statistics->getId(); // Remote clients expect a boolean, not an integer. $array['HasRun'] = ($array['HasRun'] === 0); return $array; } }