2014-09-18 18:55:52 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Håvard Pettersson <haavard.pettersson@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of Tox-WeeChat.
|
|
|
|
*
|
|
|
|
* Tox-WeeChat 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.
|
|
|
|
*
|
|
|
|
* Tox-WeeChat 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 Tox-WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-09-02 13:59:38 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2014-09-02 12:37:00 +02:00
|
|
|
#include <weechat/weechat-plugin.h>
|
|
|
|
|
2014-09-28 03:29:34 +02:00
|
|
|
#include "twc-profile.h"
|
|
|
|
#include "twc-commands.h"
|
|
|
|
#include "twc-gui.h"
|
|
|
|
#include "twc-config.h"
|
|
|
|
#include "twc-completion.h"
|
2014-10-04 19:42:30 +02:00
|
|
|
#include "twc-sqlite.h"
|
2014-09-02 13:59:38 +02:00
|
|
|
|
2014-09-28 03:29:34 +02:00
|
|
|
#include "twc.h"
|
2014-09-02 13:59:38 +02:00
|
|
|
|
2014-09-02 12:37:00 +02:00
|
|
|
WEECHAT_PLUGIN_NAME("tox");
|
|
|
|
WEECHAT_PLUGIN_DESCRIPTION("Tox protocol");
|
|
|
|
WEECHAT_PLUGIN_AUTHOR("Håvard Pettersson <haavard.pettersson@gmail.com>");
|
|
|
|
WEECHAT_PLUGIN_VERSION("0.1");
|
2014-09-18 18:55:52 +02:00
|
|
|
WEECHAT_PLUGIN_LICENSE("GPL3");
|
2014-09-02 12:37:00 +02:00
|
|
|
|
2014-09-02 13:59:38 +02:00
|
|
|
struct t_weechat_plugin *weechat_plugin = NULL;
|
|
|
|
|
2014-09-02 12:37:00 +02:00
|
|
|
int
|
2014-09-02 13:59:38 +02:00
|
|
|
weechat_plugin_init(struct t_weechat_plugin *plugin, int argc, char *argv[])
|
2014-09-02 12:37:00 +02:00
|
|
|
{
|
2014-09-02 13:59:38 +02:00
|
|
|
weechat_plugin = plugin;
|
|
|
|
|
2014-10-04 19:42:30 +02:00
|
|
|
if (twc_sqlite_init() != 0)
|
|
|
|
{
|
|
|
|
weechat_printf(NULL,
|
|
|
|
"%s%s: failed to initialize persistent storage, some "
|
|
|
|
"data will not be saved",
|
|
|
|
weechat_prefix("error"), weechat_plugin->name);
|
|
|
|
}
|
|
|
|
|
2014-09-28 03:29:34 +02:00
|
|
|
twc_profile_init();
|
|
|
|
twc_commands_init();
|
|
|
|
twc_gui_init();
|
|
|
|
twc_completion_init();
|
2014-09-02 13:59:38 +02:00
|
|
|
|
2014-09-28 03:29:34 +02:00
|
|
|
twc_config_init();
|
|
|
|
twc_config_read();
|
|
|
|
|
|
|
|
// TODO: respect weechat flag for no autoconnect
|
|
|
|
twc_profile_autoload();
|
2014-09-13 12:22:26 +02:00
|
|
|
|
2014-09-02 12:37:00 +02:00
|
|
|
return WEECHAT_RC_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
weechat_plugin_end(struct t_weechat_plugin *plugin)
|
|
|
|
{
|
2014-09-28 03:29:34 +02:00
|
|
|
twc_config_write();
|
|
|
|
|
|
|
|
twc_profile_free_all();
|
2014-09-02 18:47:08 +02:00
|
|
|
|
2014-10-04 19:42:30 +02:00
|
|
|
twc_sqlite_end();
|
|
|
|
|
2014-09-02 12:37:00 +02:00
|
|
|
return WEECHAT_RC_OK;
|
|
|
|
}
|
2014-09-28 03:29:34 +02:00
|
|
|
|