1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
/* Ekiga -- A VoIP and Video-Conferencing application
* Copyright (C) 2000-2009 Damien Sandras <dsandras@seconix.com>
*
* 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
*
* Ekiga is licensed under the GPL license and as a special exception,
* you have permission to link or otherwise combine this program with the
* programs OPAL, OpenH323 and PWLIB, and distribute the combination,
* without applying the requirements of the GNU GPL to the OPAL, OpenH323
* and PWLIB programs, as long as you do follow the requirements of the
* GNU GPL for all the rest of the software thus combined.
*/
/*
* opal-account.cpp - description
* ------------------------------------------
* begin : written in 2008 by Damien Sandras
* copyright : (c) 2008 by Damien Sandras
* description : implementation of an opal account
*
*/
#include "config.h"
#include <string.h>
#include <stdlib.h>
#include <sstream>
#include <glib/gi18n.h>
#include "gmconf.h"
#include "menu-builder.h"
#include "opal-bank.h"
#include "form-request-simple.h"
Opal::Bank::Bank (Ekiga::ServiceCore &_core): core(_core)
{
GSList *accounts = gm_conf_get_string_list ("/apps/" PACKAGE_NAME "/protocols/accounts_list");
GSList *accounts_iter = accounts;
while (accounts_iter) {
boost::shared_ptr<Account> account = boost::shared_ptr<Account> (new Account (core, (char *)accounts_iter->data));
add_account (account);
Ekiga::BankImpl<Account>::add_connection (account, account->trigger_saving.connect (boost::bind (&Opal::Bank::save, this)));
Ekiga::BankImpl<Account>::add_connection (account, account->presence_received.connect (boost::ref (presence_received)));
Ekiga::BankImpl<Account>::add_connection (account, account->status_received.connect (boost::ref (status_received)));
accounts_iter = g_slist_next (accounts_iter);
}
g_slist_foreach (accounts, (GFunc) g_free, NULL);
g_slist_free (accounts);
}
bool
Opal::Bank::populate_menu (Ekiga::MenuBuilder & builder)
{
builder.add_action ("add", _("_Add an Ekiga.net Account"),
boost::bind (&Opal::Bank::new_account, this, Opal::Account::Ekiga, "", ""));
builder.add_action ("add", _("_Add an Ekiga Call Out Account"),
boost::bind (&Opal::Bank::new_account, this, Opal::Account::DiamondCard, "", ""));
builder.add_action ("add", _("_Add a SIP Account"),
boost::bind (&Opal::Bank::new_account, this, Opal::Account::SIP, "", ""));
#ifdef HAVE_H323
builder.add_action ("add", _("_Add an H.323 Account"),
boost::bind (&Opal::Bank::new_account, this, Opal::Account::H323, "", ""));
#endif
return true;
}
void
Opal::Bank::new_account (Account::Type acc_type,
std::string username,
std::string password)
{
boost::shared_ptr<Ekiga::FormRequestSimple> request = boost::shared_ptr<Ekiga::FormRequestSimple> (new Ekiga::FormRequestSimple (boost::bind (&Opal::Bank::on_new_account_form_submitted, this, _1, _2, acc_type)));
request->title (_("Edit account"));
request->instructions (_("Please update the following fields:"));
switch (acc_type) {
case Opal::Account::Ekiga:
request->link (_("Get an Ekiga.net SIP account"), "http://www.ekiga.net");
request->hidden ("name", "Ekiga.net");
request->hidden ("host", "ekiga.net");
request->text ("user", _("_User:"), username, _("The user name, e.g. jim"));
request->hidden ("authentication_user", username);
request->private_text ("password", _("_Password:"), password, _("Password associated to the user"));
request->hidden ("timeout", "3600");
break;
case Opal::Account::DiamondCard:
request->link (_("Get an Ekiga Call Out account"),
"https://www.diamondcard.us/exec/voip-login?act=sgn&spo=ekiga");
request->hidden ("name", "Ekiga Call Out");
request->hidden ("host", "sip.diamondcard.us");
request->text ("user", _("_Account ID:"), username, _("The user name, e.g. jim"));
request->hidden ("authentication_user", username);
request->private_text ("password", _("_PIN code:"), password, _("Password associated to the user"));
request->hidden ("timeout", "3600");
break;
case Opal::Account::H323:
request->text ("name", _("_Name:"), std::string (), _("Account name, e.g. MyAccount"));
request->text ("host", _("_Gatekeeper:"), std::string (), _("The gatekeeper, e.g. ekiga.net"));
request->text ("user", _("_User:"), username, _("The user name, e.g. jim"));
request->hidden ("authentication_user", username);
request->private_text ("password", _("_Password:"), password, _("Password associated to the user"));
request->text ("timeout", _("_Timeout:"), "3600", _("Time in seconds after which the account registration is automatically retried"));
break;
case Opal::Account::SIP:
default:
request->text ("name", _("_Name:"), std::string (), _("Account name, e.g. MyAccount"));
request->text ("host", _("_Registrar:"), std::string (), _("The registrar, e.g. ekiga.net"));
request->text ("user", _("_User:"), username, _("The user name, e.g. jim"));
request->text ("authentication_user", _("_Authentication user:"), std::string (), _("The user name used during authentication, if different than the user name; leave empty if you do not have one"));
request->private_text ("password", _("_Password:"), password, _("Password associated to the user"));
request->text ("timeout", _("_Timeout:"), "3600", _("Time in seconds after which the account registration is automatically retried"));
break;
}
request->boolean ("enabled", _("Enable account"), true);
if (!username.empty () && !password.empty ())
request->submit (*request);
else
questions (request);
}
void Opal::Bank::on_new_account_form_submitted (bool submitted,
Ekiga::Form &result,
Account::Type acc_type)
{
if (!submitted)
return;
boost::shared_ptr<Ekiga::FormRequestSimple> request = boost::shared_ptr<Ekiga::FormRequestSimple> (new Ekiga::FormRequestSimple (boost::bind (&Opal::Bank::on_new_account_form_submitted, this, _1, _2, acc_type)));
std::string error;
std::string new_name = (acc_type == Opal::Account::SIP
|| acc_type == Opal::Account::H323) ? result.text ("name") : result.hidden ("name");
std::string new_host = (acc_type == Opal::Account::SIP
|| acc_type == Opal::Account::H323) ? result.text ("host") : result.hidden ("host");
std::string new_user = result.text ("user");
std::string new_authentication_user = (acc_type == Opal::Account::SIP) ? result.text ("authentication_user") : new_user;
std::string new_password = result.private_text ("password");
bool new_enabled = result.boolean ("enabled");
unsigned new_timeout = atoi ((acc_type == Opal::Account::SIP
|| acc_type == Opal::Account::H323) ?
result.text ("timeout").c_str () : result.hidden ("timeout").c_str ());
result.visit (*request);
if (new_name.empty ())
error = _("You did not supply a name for that account.");
else if (new_host.empty ())
error = _("You did not supply a host to register to.");
else if (new_user.empty ())
error = _("You did not supply a user name for that account.");
else if (new_timeout < 10)
error = _("The timeout should be at least 10 seconds.");
if (!error.empty ()) {
request->error (error);
questions (request);
}
else {
add (acc_type, new_name, new_host, new_user, new_authentication_user,
new_password, new_enabled, new_timeout);
save ();
}
}
void Opal::Bank::add (Account::Type acc_type,
std::string name,
std::string host,
std::string user,
std::string auth_user,
std::string password,
bool enabled,
unsigned timeout)
{
AccountPtr account = AccountPtr(new Opal::Account (core, acc_type, name,
host, user, auth_user,
password, enabled,
timeout));
add_account (account);
Ekiga::BankImpl<Account>::add_connection (account, account->trigger_saving.connect (boost::bind (&Opal::Bank::save, this)));
Ekiga::BankImpl<Account>::add_connection (account, account->presence_received.connect (boost::ref (presence_received)));
Ekiga::BankImpl<Account>::add_connection (account, account->status_received.connect (boost::ref (status_received)));
}
void
Opal::Bank::call_manager_ready ()
{
for (iterator iter = begin ();
iter != end ();
++iter) {
if ((*iter)->is_enabled ())
(*iter)->enable ();
}
}
Opal::AccountPtr
Opal::Bank::find_account (const std::string& aor)
{
AccountPtr result;
for (iterator iter = begin ();
iter != end ();
++iter) {
if (aor.find ("@") != std::string::npos && (*iter)->get_aor () == aor) // find by account name+host (aor)
return *iter;
else if ((*iter)->get_host () == aor) // find by host
return *iter;
}
return result;
}
void
Opal::Bank::save () const
{
GSList *accounts = NULL;
for (const_iterator it = begin ();
it != end ();
it++) {
std::string acct_str = (*it)->as_string ();
if ( !acct_str.empty ())
accounts = g_slist_append (accounts, g_strdup (acct_str.c_str ()));
}
gm_conf_set_string_list ("/apps/" PACKAGE_NAME "/protocols/accounts_list", accounts);
g_slist_foreach (accounts, (GFunc) g_free, NULL);
g_slist_free (accounts);
}
void
Opal::Bank::publish (const Ekiga::PersonalDetails& details)
{
for (iterator iter = begin ();
iter != end ();
iter++)
(*iter)->publish (details);
}
void
Opal::Bank::fetch (const std::string uri)
{
for (iterator iter = begin ();
iter != end ();
iter++)
(*iter)->fetch (uri);
}
void
Opal::Bank::unfetch (const std::string uri)
{
for (iterator iter = begin ();
iter != end ();
iter++)
(*iter)->unfetch (uri);
}
|