2014-09-18 18:55:52 +02:00
|
|
|
/*
|
2016-05-10 12:04:24 +02:00
|
|
|
* Copyright (c) 2016 Håvard Pettersson <mail@haavard.me>
|
2014-09-18 18:55:52 +02:00
|
|
|
*
|
|
|
|
* 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-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");
|
2015-01-02 16:09:11 +01:00
|
|
|
WEECHAT_PLUGIN_AUTHOR("Håvard Pettersson <mail@haavard.me>");
|
2014-09-02 12:37:00 +02:00
|
|
|
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-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();
|
|
|
|
|
2014-10-05 22:54:55 +02:00
|
|
|
bool no_autoconnect = false;
|
|
|
|
for (int i = 0; i < argc; i++)
|
|
|
|
{
|
|
|
|
if (weechat_strcasecmp(argv[i], "-a") == 0
|
|
|
|
|| weechat_strcasecmp(argv[i], "--no-connect") == 0)
|
|
|
|
{
|
|
|
|
no_autoconnect = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!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-09-02 12:37:00 +02:00
|
|
|
return WEECHAT_RC_OK;
|
|
|
|
}
|
2014-09-28 03:29:34 +02:00
|
|
|
|