Sync up miranda files with current libsipe branch
[siplcs.git] / src / miranda / miranda-setting.c
blob7fe2f03bca09b30115061c2111c3acfd0f841b8a
1 /**
2 * @file purple-setting.c
4 * pidgin-sipe
6 * Copyright (C) 2010 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #define MIRANDA_VER 0x900
25 #include <windows.h>
27 #include <glib.h>
29 #include "sipe-core.h"
30 #include "sipe-backend.h"
32 #include "newpluginapi.h"
33 #include "m_protosvc.h"
34 #include "m_protoint.h"
35 #include "m_system.h"
36 #include "m_database.h"
38 #include "libsipe.h"
39 #include "miranda-private.h"
41 /**
42 * Map sipe_setting values to miranda account setting keys
44 * This needs to be kept in sync with
46 * api/sipe-backend.h
48 static const gchar * const setting_name[SIPE_SETTING_LAST] = {
49 "email_url", /* SIPE_SETTING_EMAIL_URL */
50 "login", /* SIPE_SETTING_EMAIL_LOGIN */
51 "password", /* SIPE_SETTING_EMAIL_PASSWORD */
52 "groupchat_user", /* SIPE_SETTING_GROUPCHAT_USER */
53 "useragent" /* SIPE_SETTING_USER_AGENT */
56 const gchar *sipe_backend_setting(struct sipe_core_public *sipe_public,
57 sipe_setting type)
59 SIPPROTO *pr = sipe_public->backend_private;
60 gchar *ret;
61 gchar *tmp;
63 if (type == SIPE_SETTING_EMAIL_PASSWORD) {
64 tmp = (char*)mir_calloc(1024);
66 if (sipe_miranda_getStaticString(pr, NULL, "password", tmp, 1024 )) tmp[0] = '\0';
67 CallService(MS_DB_CRYPT_DECODESTRING, sizeof(tmp),(LPARAM)tmp);
69 } else {
70 tmp = sipe_miranda_getString(pr, setting_name[type] );
73 ret = g_strdup(tmp);
74 mir_free(tmp);
75 return ret;
80 Local Variables:
81 mode: c
82 c-file-style: "bsd"
83 indent-tabs-mode: t
84 tab-width: 8
85 End: