2017-11-18 19:34:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 Edouard Griffiths, F4EXB. //
|
|
|
|
// //
|
|
|
|
// Swagger server adapter interface //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "webapiadapterinterface.h"
|
|
|
|
|
|
|
|
QString WebAPIAdapterInterface::instanceSummaryURL = "/sdrangel";
|
2017-11-22 18:57:35 +01:00
|
|
|
QString WebAPIAdapterInterface::instanceDevicesURL = "/sdrangel/devices";
|
2017-11-23 01:19:32 +01:00
|
|
|
QString WebAPIAdapterInterface::instanceChannelsURL = "/sdrangel/channels";
|
2017-11-23 18:43:01 +01:00
|
|
|
QString WebAPIAdapterInterface::instanceLoggingURL = "/sdrangel/logging";
|
2017-11-24 08:46:12 +01:00
|
|
|
QString WebAPIAdapterInterface::instanceAudioURL = "/sdrangel/audio";
|
2018-03-29 01:43:31 +02:00
|
|
|
QString WebAPIAdapterInterface::instanceAudioInputParametersURL = "/sdrangel/audio/input/parameters";
|
|
|
|
QString WebAPIAdapterInterface::instanceAudioOutputParametersURL = "/sdrangel/audio/output/parameters";
|
|
|
|
QString WebAPIAdapterInterface::instanceAudioInputCleanupURL = "/sdrangel/audio/input/cleanup";
|
|
|
|
QString WebAPIAdapterInterface::instanceAudioOutputCleanupURL = "/sdrangel/audio/output/cleanup";
|
2017-11-25 04:02:11 +01:00
|
|
|
QString WebAPIAdapterInterface::instanceLocationURL = "/sdrangel/location";
|
2017-11-25 04:43:22 +01:00
|
|
|
QString WebAPIAdapterInterface::instanceDVSerialURL = "/sdrangel/dvserial";
|
2017-12-21 00:50:58 +01:00
|
|
|
QString WebAPIAdapterInterface::instancePresetsURL = "/sdrangel/presets";
|
2017-11-25 11:14:52 +01:00
|
|
|
QString WebAPIAdapterInterface::instancePresetURL = "/sdrangel/preset";
|
2017-12-19 01:11:34 +01:00
|
|
|
QString WebAPIAdapterInterface::instancePresetFileURL = "/sdrangel/preset/file";
|
2017-11-25 20:14:16 +01:00
|
|
|
QString WebAPIAdapterInterface::instanceDeviceSetsURL = "/sdrangel/devicesets";
|
2017-12-22 01:07:03 +01:00
|
|
|
QString WebAPIAdapterInterface::instanceDeviceSetURL = "/sdrangel/deviceset";
|
2017-11-26 00:26:56 +01:00
|
|
|
|
2017-11-26 10:37:39 +01:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetURLRe("^/sdrangel/deviceset/([0-9]{1,2})$");
|
2018-01-06 03:46:53 +01:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetFocusURLRe("^/sdrangel/deviceset/([0-9]{1,2})/focus$");
|
2017-11-26 10:37:39 +01:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device$");
|
2017-12-06 22:08:34 +01:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceSettingsURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device/settings$");
|
2017-12-06 23:49:14 +01:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceRunURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device/run");
|
2018-03-19 00:08:38 +01:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelsReportURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channels/report$");
|
2017-12-11 01:18:10 +01:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel$");
|
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelIndexURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel/([0-9]{1,2})$");
|
2017-12-10 20:27:08 +01:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelSettingsURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel/([0-9]{1,2})/settings$");
|
2018-03-18 20:17:11 +01:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelReportURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel/([0-9]{1,2})/report");
|