gitea2rss/src/strings.cpp

42 lines
1.2 KiB
C++
Raw Normal View History

/* This file is part of gitea2rss.
* Copyright © 2019 tastytea <tastytea@tastytea.de>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include "gitea2rss.hpp"
2019-04-20 05:39:52 +02:00
const string get_baseurl(const string &url)
{
2019-04-20 05:39:52 +02:00
const size_t pos = url.find('/', 8);
return url.substr(0, pos);
}
2019-04-20 05:39:52 +02:00
const string get_domain(const string &url)
{
2019-04-20 05:39:52 +02:00
const string baseurl = get_baseurl(url);
return baseurl.substr(baseurl.rfind('/') + 1);
}
const string get_repo(const string &url)
{
const size_t pos = url.find('/', 8) + 1;
return url.substr(pos);
}
2019-04-20 05:39:52 +02:00
const string get_project(const string &url)
{
2019-04-20 05:39:52 +02:00
const string repo = get_repo(url);
return repo.substr(repo.find('/') + 1);
}