d50f2528f3490a17ab807b9cbe81a1391bc757a1
[claws.git] / src / plugins / python / accounttype.c
1 /* Python plugin for Claws-Mail
2  * Copyright (C) 2013 Holger Berndt <hb@claws-mail.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifdef HAVE_CONFIG_H
19 #  include "config.h"
20 #  include "claws-features.h"
21 #endif
22
23 #include "accounttype.h"
24
25 #include <structmember.h>
26
27 typedef struct {
28     PyObject_HEAD
29     PrefsAccount *account;
30 } clawsmail_AccountObject;
31
32 static int Account_init(clawsmail_AccountObject *self, PyObject *args, PyObject *kwds)
33 {
34   self->account = NULL;
35   return 0;
36 }
37
38
39 static void Account_dealloc(clawsmail_AccountObject* self)
40 {
41   self->ob_type->tp_free((PyObject*)self);
42 }
43
44 static int Account_compare(clawsmail_AccountObject *obj1, clawsmail_AccountObject *obj2)
45 {
46   if(obj1->account->account_id < obj2->account->account_id)
47     return -1;
48   else if(obj1->account->account_id > obj2->account->account_id)
49     return 1;
50   else
51     return 0;
52 }
53
54 static PyObject* Account_str(clawsmail_AccountObject *self)
55 {
56   return PyString_FromFormat("Account: %s", self->account->account_name);
57 }
58
59 static PyObject* get_account_name(clawsmail_AccountObject *self, void *closure)
60 {
61   if(self->account && self->account->account_name)
62     return PyString_FromString(self->account->account_name);
63   Py_RETURN_NONE;
64 }
65
66 static PyObject* get_address(clawsmail_AccountObject *self, void *closure)
67 {
68   if(self->account && self->account->address)
69     return PyString_FromString(self->account->address);
70   Py_RETURN_NONE;
71 }
72
73 static PyObject* get_is_default(clawsmail_AccountObject *self, void *closure)
74 {
75   if(self->account->is_default)
76     Py_RETURN_TRUE;
77   Py_RETURN_FALSE;
78 }
79
80 static PyGetSetDef Account_getset[] = {
81     {"account_name", (getter)get_account_name, (setter)NULL,
82       "account_name - name of the account", NULL},
83
84     {"address", (getter)get_address, (setter)NULL,
85      "address - address of the account", NULL},
86
87     {"is_default", (getter)get_is_default, (setter)NULL,
88      "is_default - whether this account is the default account", NULL},
89
90     {NULL}
91 };
92
93 static PyTypeObject clawsmail_AccountType = {
94     PyObject_HEAD_INIT(NULL)
95     0,                         /* ob_size*/
96     "clawsmail.Account",       /* tp_name*/
97     sizeof(clawsmail_AccountObject), /* tp_basicsize*/
98     0,                         /* tp_itemsize*/
99     (destructor)Account_dealloc, /* tp_dealloc*/
100     0,                         /* tp_print*/
101     0,                         /* tp_getattr*/
102     0,                         /* tp_setattr*/
103     (cmpfunc)Account_compare,  /* tp_compare*/
104     0,                         /* tp_repr*/
105     0,                         /* tp_as_number*/
106     0,                         /* tp_as_sequence*/
107     0,                         /* tp_as_mapping*/
108     0,                         /* tp_hash */
109     0,                         /* tp_call*/
110     (reprfunc)Account_str,     /* tp_str*/
111     0,                         /* tp_getattro*/
112     0,                         /* tp_setattro*/
113     0,                         /* tp_as_buffer*/
114     Py_TPFLAGS_DEFAULT,        /* tp_flags*/
115     "Account objects.\n\n"     /* tp_doc */
116     "Do not construct objects of this type yourself.",
117     0,                         /* tp_traverse */
118     0,                         /* tp_clear */
119     0,                         /* tp_richcompare */
120     0,                         /* tp_weaklistoffset */
121     0,                         /* tp_iter */
122     0,                         /* tp_iternext */
123     0,                         /* tp_methods */
124     0,                         /* tp_members */
125     Account_getset,            /* tp_getset */
126     0,                         /* tp_base */
127     0,                         /* tp_dict */
128     0,                         /* tp_descr_get */
129     0,                         /* tp_descr_set */
130     0,                         /* tp_dictoffset */
131     (initproc)Account_init,    /* tp_init */
132     0,                         /* tp_alloc */
133     0,                         /* tp_new */
134 };
135
136
137 gboolean cmpy_add_account(PyObject *module)
138 {
139   clawsmail_AccountType.tp_new = PyType_GenericNew;
140   if(PyType_Ready(&clawsmail_AccountType) < 0)
141     return FALSE;
142
143   Py_INCREF(&clawsmail_AccountType);
144   return (PyModule_AddObject(module, "Account", (PyObject*)&clawsmail_AccountType) == 0);
145 }
146
147 PyObject* clawsmail_account_new(PrefsAccount *account)
148 {
149   clawsmail_AccountObject *ff;
150
151   if(!account)
152     return NULL;
153
154   ff = (clawsmail_AccountObject*) PyObject_CallObject((PyObject*) &clawsmail_AccountType, NULL);
155   if(!ff)
156     return NULL;
157
158   ff->account = account;
159   return (PyObject*)ff;
160 }