| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (C) 2014 Named Data Networking Project |
| * See COPYING for copyright and distribution information. |
| */ |
| |
| #include "manager-base.hpp" |
| |
| namespace nfd { |
| |
| NFD_LOG_INIT("ManagerBase"); |
| |
| ManagerBase::ManagerBase(shared_ptr<InternalFace> face, const std::string& privilege) |
| : m_face(face) |
| { |
| face->getValidator().addSupportedPrivilege(privilege); |
| } |
| |
| ManagerBase::~ManagerBase() |
| { |
| |
| } |
| |
| void |
| ManagerBase::sendResponse(const Name& name, |
| uint32_t code, |
| const std::string& text) |
| { |
| ControlResponse response(code, text); |
| sendResponse(name, response); |
| } |
| |
| void |
| ManagerBase::sendResponse(const Name& name, |
| const ControlResponse& response) |
| { |
| NFD_LOG_DEBUG("responding" |
| << " name: " << name |
| << " code: " << response.getCode() |
| << " text: " << response.getText()); |
| |
| const Block& encodedControl = response.wireEncode(); |
| |
| shared_ptr<Data> responseData(make_shared<Data>(name)); |
| responseData->setContent(encodedControl); |
| |
| m_face->sign(*responseData); |
| m_face->put(*responseData); |
| } |
| |
| void |
| ManagerBase::onCommandValidationFailed(const shared_ptr<const Interest>& command, |
| const std::string& error) |
| { |
| NFD_LOG_INFO("command result: unauthorized command: " << *command); |
| sendResponse(command->getName(), 403, "Unauthorized command"); |
| } |
| |
| |
| } // namespace nfd |