2017-11-18 13:34:47 -05: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 //
|
2019-04-11 08:32:15 -04:00
|
|
|
// (at your option) any later version. //
|
2017-11-18 13:34:47 -05:00
|
|
|
// //
|
|
|
|
// 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 12:57:35 -05:00
|
|
|
QString WebAPIAdapterInterface::instanceDevicesURL = "/sdrangel/devices";
|
2017-11-22 19:19:32 -05:00
|
|
|
QString WebAPIAdapterInterface::instanceChannelsURL = "/sdrangel/channels";
|
2017-11-23 12:43:01 -05:00
|
|
|
QString WebAPIAdapterInterface::instanceLoggingURL = "/sdrangel/logging";
|
2017-11-24 02:46:12 -05:00
|
|
|
QString WebAPIAdapterInterface::instanceAudioURL = "/sdrangel/audio";
|
2018-03-28 19:43:31 -04: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-24 22:02:11 -05:00
|
|
|
QString WebAPIAdapterInterface::instanceLocationURL = "/sdrangel/location";
|
2017-11-24 22:43:22 -05:00
|
|
|
QString WebAPIAdapterInterface::instanceDVSerialURL = "/sdrangel/dvserial";
|
2017-12-20 18:50:58 -05:00
|
|
|
QString WebAPIAdapterInterface::instancePresetsURL = "/sdrangel/presets";
|
2017-11-25 05:14:52 -05:00
|
|
|
QString WebAPIAdapterInterface::instancePresetURL = "/sdrangel/preset";
|
2017-12-18 19:11:34 -05:00
|
|
|
QString WebAPIAdapterInterface::instancePresetFileURL = "/sdrangel/preset/file";
|
2017-11-25 14:14:16 -05:00
|
|
|
QString WebAPIAdapterInterface::instanceDeviceSetsURL = "/sdrangel/devicesets";
|
2017-12-21 19:07:03 -05:00
|
|
|
QString WebAPIAdapterInterface::instanceDeviceSetURL = "/sdrangel/deviceset";
|
2017-11-25 18:26:56 -05:00
|
|
|
|
2017-11-26 04:37:39 -05:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetURLRe("^/sdrangel/deviceset/([0-9]{1,2})$");
|
2018-01-05 21:46:53 -05:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetFocusURLRe("^/sdrangel/deviceset/([0-9]{1,2})/focus$");
|
2017-11-26 04:37:39 -05:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device$");
|
2017-12-06 16:08:34 -05:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceSettingsURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device/settings$");
|
2017-12-06 17:49:14 -05:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceRunURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device/run");
|
2018-05-25 19:43:28 -04:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceReportURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device/report$");
|
2018-03-18 19:08:38 -04:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelsReportURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channels/report$");
|
2017-12-10 19:18:10 -05: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 14:27:08 -05:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelSettingsURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel/([0-9]{1,2})/settings$");
|
2018-03-18 15:17:11 -04:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelReportURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel/([0-9]{1,2})/report");
|