--- /dev/null
+<?php
+/*
+ * Bacula(R) - The Network Backup Solution
+ * Baculum - Bacula web interface
+ *
+ * Copyright (C) 2013-2019 Kern Sibbald
+ *
+ * The main author of Baculum is Marcin Haba.
+ * The original author of Bacula is Kern Sibbald, with contributions
+ * from many others, a complete list can be found in the file AUTHORS.
+ *
+ * You may use this file and others of this release according to the
+ * license defined in the LICENSE file, which includes the Affero General
+ * Public License, v3.0 ("AGPLv3") and some additional permissions and
+ * terms pursuant to its AGPLv3 Section 7.
+ *
+ * This notice must be preserved when any source code is
+ * conveyed and/or propagated.
+ *
+ * Bacula(R) is a registered trademark of Kern Sibbald.
+ */
+
+class BVFSCleanUp extends BaculumAPIServer {
+
+ public function set($id, $params) {
+ $misc = $this->getModule('misc');
+ $path = property_exists($params, 'path') ? $params->path : null;
+
+ if (is_null($path) || !$misc->isValidBvfsPath($path)) {
+ $this->output = BVFSError::MSG_ERROR_INVALID_RPATH;
+ $this->error = BVFSError::ERROR_INVALID_RPATH;
+ return;
+ }
+
+ $cmd = array('.bvfs_cleanup', 'path="' . $path . '"');
+ $result = $this->getModule('bconsole')->bconsoleCommand($this->director, $cmd);
+ $this->output = $result->output;
+ $this->error = $result->exitcode;
+ }
+}
+?>
<url ServiceParameter="API.BVFSGetJobids" pattern="api/v1/bvfs/getjobids/" />
<url ServiceParameter="API.BVFSRestore" pattern="api/v1/bvfs/restore/" />
<url ServiceParameter="API.BVFSClearCache" pattern="api/v1/bvfs/clear/" />
+ <url ServiceParameter="API.BVFSCleanUp" pattern="api/v1/bvfs/cleanup/" />
<!-- joblog endpoints -->
<url ServiceParameter="API.JobLog" pattern="api/v1/joblog/{id}/" parameters.id="\d+" />
<!-- fileset endpoints -->