mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-12-25 06:47:10 +00:00
39 lines
982 B
C++
39 lines
982 B
C++
//
|
|
// License type: BSD 3-Clause License
|
|
// License copy: https://github.com/Telecominfraproject/wlan-cloud-ucentralgw/blob/master/LICENSE
|
|
//
|
|
// Created by Stephane Bourque on 2021-03-04.
|
|
// Arilia Wireless Inc.
|
|
//
|
|
|
|
#include "Poco/Array.h"
|
|
#include "Poco/JSON/Stringifier.h"
|
|
|
|
#include "RESTAPI_default_configurations.h"
|
|
#include "StorageService.h"
|
|
#include "framework/RESTAPI_protocol.h"
|
|
|
|
namespace OpenWifi {
|
|
void RESTAPI_default_configurations::DoGet() {
|
|
|
|
if(QB_.CountOnly) {
|
|
auto Count = StorageService()->GetDefaultConfigurationsCount();
|
|
return ReturnCountOnly(Count);
|
|
}
|
|
|
|
std::vector<GWObjects::DefaultConfiguration> DefConfigs;
|
|
StorageService()->GetDefaultConfigurations(QB_.Offset, QB_.Limit, DefConfigs);
|
|
|
|
Poco::JSON::Array Objects;
|
|
for (const auto &i : DefConfigs) {
|
|
Poco::JSON::Object Obj;
|
|
i.to_json(Obj);
|
|
Objects.add(Obj);
|
|
}
|
|
|
|
Poco::JSON::Object RetObj;
|
|
RetObj.set(RESTAPI::Protocol::CONFIGURATIONS, Objects);
|
|
ReturnObject(RetObj);
|
|
}
|
|
}
|