mirror of
https://github.com/Telecominfraproject/wlan-cloud-owprov.git
synced 2025-11-02 19:48:03 +00:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
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 "RESTAPI_entity_list_handler.h"
|
|
#include "RESTAPI_db_helpers.h"
|
|
#include "StorageService.h"
|
|
|
|
namespace OpenWifi {
|
|
|
|
void RESTAPI_entity_list_handler::DoGet() {
|
|
if (!QB_.Select.empty()) {
|
|
return ReturnRecordList<decltype(DB_), ProvObjects::Entity>("entities", DB_, *this);
|
|
} else if (QB_.CountOnly) {
|
|
auto C = DB_.Count();
|
|
return ReturnCountOnly(C);
|
|
} else if (GetBoolParameter("getTree", false)) {
|
|
Poco::JSON::Object FullTree;
|
|
DB_.BuildTree(FullTree);
|
|
return ReturnObject(FullTree);
|
|
} else {
|
|
EntityDB::RecordVec Entities;
|
|
DB_.GetRecords(QB_.Offset, QB_.Limit, Entities);
|
|
return MakeJSONObjectArray("entities", Entities, *this);
|
|
}
|
|
}
|
|
|
|
void RESTAPI_entity_list_handler::DoPost() {
|
|
if (GetBoolParameter("setTree", false)) {
|
|
const auto &FullTree = ParsedBody_;
|
|
DB_.ImportTree(FullTree);
|
|
return OK();
|
|
}
|
|
BadRequest(RESTAPI::Errors::MissingOrInvalidParameters);
|
|
}
|
|
} // namespace OpenWifi
|