remwharead/src/main.cpp

56 lines
1.4 KiB
C++
Raw Normal View History

2019-05-11 02:52:33 +02:00
/* This file is part of remwharead.
* 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/>.
*/
2019-05-12 00:02:31 +02:00
#include <iostream>
#include <string>
#include <chrono>
2019-05-12 20:19:00 +02:00
#include "sqlite.hpp"
2019-05-12 00:02:31 +02:00
#include "parse_options.hpp"
#include "url.hpp"
2019-05-12 00:02:31 +02:00
using std::cout;
using std::cerr;
using std::endl;
using std::string;
using std::chrono::system_clock;
2019-05-12 00:02:31 +02:00
2019-05-12 20:19:00 +02:00
int main(const int argc, const char *argv[])
2019-05-11 02:52:33 +02:00
{
2019-05-12 00:02:31 +02:00
options opts = parse_options(argc, argv);
2019-05-12 20:19:00 +02:00
if (opts.status_code != 0)
{
return opts.status_code;
}
2019-05-12 00:02:31 +02:00
2019-05-14 20:45:48 +02:00
Database db;
if (!db)
{
cerr << "Error: Database connection failed.\n";
return 2;
}
if (!opts.url.empty())
{
URL url(opts.url);
html_extract page = url.get();
2019-05-15 22:24:11 +02:00
db.store(opts.url, url.archive(), system_clock::now(), opts.tags,
page.title, page.description, page.fulltext);
}
2019-05-14 20:45:48 +02:00
2019-05-11 02:52:33 +02:00
return 0;
}