2024-08-05 20:54:45 +02:00
|
|
|
#pragma once
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2024 Dominik Meyer
|
|
|
|
*
|
|
|
|
* 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, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nlohmann/json_fwd.hpp"
|
|
|
|
#include <cstdint>
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
#include <Redmine/Object.hpp>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The main namespace of this library for Redmine related datatypes, classes, and functions
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
namespace Redmine
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This class represents a user within the redmine server.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class Issue : public Redmine::Object
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
/// the data store for the issue
|
|
|
|
nlohmann::json data_;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief verify issue data
|
|
|
|
*
|
|
|
|
* @param data - the json object containing the issue data
|
|
|
|
*/
|
|
|
|
void _verify(const nlohmann::json &data);
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit Issue(const nlohmann::json &issue);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief set the issue object from a json object
|
|
|
|
*
|
|
|
|
* @param data
|
|
|
|
*/
|
|
|
|
void set(const nlohmann::json &data);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief return a json object from the issue object
|
|
|
|
*
|
|
|
|
* @return nlohmann::json
|
|
|
|
*/
|
|
|
|
nlohmann::json get() const;
|
|
|
|
|
2024-10-09 15:20:32 +02:00
|
|
|
/**
|
|
|
|
* @brief return the id of the issue
|
|
|
|
*
|
|
|
|
* @return std::uint64_t
|
|
|
|
*/
|
2024-08-05 20:54:45 +02:00
|
|
|
std::uint64_t getId() const;
|
|
|
|
|
2024-10-09 15:20:32 +02:00
|
|
|
std::string getProject() const;
|
|
|
|
std::uint64_t getProjectId() const;
|
|
|
|
std::string getStatus() const;
|
|
|
|
std::uint64_t getStatusID() const;
|
|
|
|
std::string getSubject() const;
|
|
|
|
std::string getDescription() const;
|
|
|
|
std::string to_string() const;
|
2024-08-05 20:54:45 +02:00
|
|
|
|
|
|
|
}; // class Issue
|
|
|
|
|
|
|
|
}; // namespace Redmine
|