Adds a entry to search for countries in the country selector
[modest] / src / modest-default-connection-policy.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <config.h>
31 #include <glib.h>
32
33 #include "modest-default-connection-policy.h"
34 #include "modest-account-mgr.h"
35 #include "modest-account-mgr-helpers.h"
36 #include "modest-runtime.h"
37 #include "modest-tny-account.h"
38 #include "modest-ui-actions.h"
39 #include <tny-account.h>
40 #include <tny-store-account.h>
41
42 static GObjectClass *parent_class = NULL;
43
44 static void
45 modest_default_connection_policy_set_current (TnyConnectionPolicy *self, TnyAccount *account, TnyFolder *folder)
46 {
47         return;
48 }
49
50 static void
51 modest_default_connection_policy_on_connect (TnyConnectionPolicy *self, TnyAccount *account)
52 {
53         /* Set the username as succedded */
54         if (TNY_IS_STORE_ACCOUNT (account)) {
55                 gboolean first_time = FALSE;
56                 const gchar *id;
57                 ModestAccountMgr *acc_mgr;
58
59                 acc_mgr = modest_runtime_get_account_mgr ();
60                 id = tny_account_get_id (account);
61                 first_time = !modest_account_mgr_get_server_account_username_has_succeeded (acc_mgr, id);
62
63                 /* If it's the first connection then perform a send&receive */
64                 if (first_time) {
65                         const gchar *account_name;
66                         ModestWindow *top_window;
67
68                         modest_account_mgr_set_server_account_username_has_succeeded (acc_mgr, id, TRUE);
69
70                         /* Perform a send receive */
71                         account_name = modest_tny_account_get_parent_modest_account_name_for_server_account (account);
72                         top_window = modest_window_mgr_get_current_top (modest_runtime_get_window_mgr ());
73                         if (top_window)
74                                 modest_ui_actions_do_send_receive (account_name, FALSE, FALSE, TRUE, top_window);
75                 }
76         }
77
78         return;
79 }
80
81 static void
82 modest_default_connection_policy_on_connection_broken (TnyConnectionPolicy *self, TnyAccount *account)
83 {
84         return;
85 }
86
87 static void
88 modest_default_connection_policy_on_disconnect (TnyConnectionPolicy *self, TnyAccount *account)
89 {
90         return;
91 }
92
93 static void
94 modest_default_connection_policy_finalize (GObject *object)
95 {
96         parent_class->finalize (object);
97 }
98
99 static void
100 modest_default_connection_policy_instance_init (GTypeInstance *instance, gpointer g_class)
101 {
102 }
103
104 static void
105 tny_connection_policy_init (TnyConnectionPolicyIface *klass)
106 {
107         klass->on_connect= modest_default_connection_policy_on_connect;
108         klass->on_connection_broken= modest_default_connection_policy_on_connection_broken;
109         klass->on_disconnect= modest_default_connection_policy_on_disconnect;
110         klass->set_current= modest_default_connection_policy_set_current;
111 }
112
113 static void
114 modest_default_connection_policy_class_init (ModestDefaultConnectionPolicyClass *klass)
115 {
116         GObjectClass *object_class;
117
118         parent_class = g_type_class_peek_parent (klass);
119         object_class = (GObjectClass*) klass;
120         object_class->finalize = modest_default_connection_policy_finalize;
121 }
122
123
124
125 /**
126  * modest_default_connection_policy_new:
127  * 
128  * A connection policy
129  *
130  * Return value: A new #TnyConnectionPolicy instance 
131  **/
132 TnyConnectionPolicy*
133 modest_default_connection_policy_new (void)
134 {
135         return TNY_CONNECTION_POLICY (g_object_new (MODEST_TYPE_DEFAULT_CONNECTION_POLICY, NULL));
136 }
137
138 GType
139 modest_default_connection_policy_get_type (void)
140 {
141         static GType type = 0;
142         if (G_UNLIKELY(type == 0))
143         {
144                 static const GTypeInfo info = 
145                 {
146                         sizeof (ModestDefaultConnectionPolicyClass),
147                         NULL,   /* base_init */
148                         NULL,   /* base_finalize */
149                         (GClassInitFunc) modest_default_connection_policy_class_init,   /* class_init */
150                         NULL,   /* class_finalize */
151                         NULL,   /* class_data */
152                         sizeof (ModestDefaultConnectionPolicy),
153                         0,      /* n_preallocs */
154                         modest_default_connection_policy_instance_init,    /* instance_init */
155                         NULL
156                 };
157
158
159                 static const GInterfaceInfo tny_connection_policy_info = 
160                 {
161                         (GInterfaceInitFunc) tny_connection_policy_init, /* interface_init */
162                         NULL,         /* interface_finalize */
163                         NULL          /* interface_data */
164                 };
165
166                 type = g_type_register_static (G_TYPE_OBJECT,
167                         "ModestDefaultConnectionPolicy",
168                         &info, 0);
169
170                 g_type_add_interface_static (type, TNY_TYPE_CONNECTION_POLICY,
171                         &tny_connection_policy_info);
172
173         }
174         return type;
175 }