v1.2 initial commit
This commit is contained in:
36
pub/api/classes/API_system_sources.php
Normal file
36
pub/api/classes/API_system_sources.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace api\classes;
|
||||
|
||||
use api\classes\API;
|
||||
|
||||
require_once 'API.php';
|
||||
|
||||
class API_system_sources extends API
|
||||
{
|
||||
public function inserveUpdate()
|
||||
{
|
||||
$query = "INSERT INTO system_sources (
|
||||
source_uuid,
|
||||
source_name,
|
||||
source_url,
|
||||
source_auth_username,
|
||||
source_auth_password,
|
||||
source_auth_token,
|
||||
source_custom_data,
|
||||
source_create_timestamp,
|
||||
source_modified_timestamp)
|
||||
VALUES (UUID(), ?, ?, '', '', ?, ?, ?, NULL)
|
||||
ON DUPLICATE KEY UPDATE
|
||||
source_url = VALUES(source_url),
|
||||
source_auth_token = VALUES(source_auth_token),
|
||||
source_custom_data = VALUES(source_custom_data),
|
||||
source_modified_timestamp = VALUES(source_create_timestamp)";
|
||||
$stmt = $this->prepareStatement($query);
|
||||
$stmt->bind_param('ssssi', $this->data['source_name'], $this->data['source_url'], $this->data['source_auth_token'], $this->data['source_custom_data'], time());
|
||||
$this->executeStatement($stmt);
|
||||
$stmt->close();
|
||||
|
||||
$this->apiOutput(200, ['success' => 'Information modified'], 'Information updated successfully.');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user