/* This file is part of gitea2rss. * Copyright © 2019 tastytea * * 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, version 3. * * 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 . */ #include #include #include #include "gitea2rss.hpp" using std::cout; using std::cerr; using std::endl; using std::stringstream; uint8_t write_tags(const string &url) { const string baseurl = get_baseurl(url); const string repo = get_repo(url); stringstream data(get_http(baseurl + "/api/v1/repos/" + repo + "/git/refs")); if (cgi) { cout << endl; } if (data.str().empty()) { cerr << "Error: Could not download tags.\n"; return 2; } write_preamble(url, "releases"); Json::Value json; data >> json; for (const Json::Value &ref : json) { if (ref["object"]["type"].asString() != "tag") { continue; } const string name = ref["ref"].asString().substr(10); const string sha = ref["object"]["sha"].asString(); cout << " \n"; write_line(6, "title", get_project(url) + ": " + name); write_line(6, "link", baseurl + "/" + repo + "/src/tag/" + name); write_line(6, "guid isPermaLink=\"false\"", get_domain(url) + " tag " + sha); write_line(6, "description", "\n " + name + " " "on commit " + sha + "

\n" "

Download tarball

]]>\n "); cout << "
\n"; } return 0; }