Implemented 'Remember my identity choice for this service' checkbox on main selector...
[moonshot-ui.git] / src / moonshot-identity-request.vala
1 /*
2  * Copyright (c) 2011-2014, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31 */
32 public delegate void ReturnIdentityCallback(IdentityRequest request);
33
34 public class IdentityRequest : Object {
35     static MoonshotLogger logger = get_logger("IdentityRequest");
36
37     public IdCard? id_card = null;
38     public bool complete = false;
39     public bool select_default = false;
40
41     private IdentityManagerApp parent_app;
42     public string nai;
43     public string password;
44     public string service;
45     public SList<IdCard> candidates;
46
47     ReturnIdentityCallback callback = null;
48
49     public IdentityRequest(IdentityManagerApp           app,
50                            string                       nai,
51                            string                       password,
52                            string                       service)
53     {
54         this.parent_app = app;
55         this.nai = nai;
56         this.password = password;
57         this.service = service;
58     }
59
60     public IdentityRequest.default(IdentityManagerApp app)
61     {
62         this.parent_app = app;
63         this.select_default = true;
64     }
65
66     public void set_callback(owned ReturnIdentityCallback cb)
67     {
68         #if VALA_0_12
69             this.callback = ((owned) cb);
70         #else
71             this.callback = ((IdCard) => cb(IdCard));
72         #endif
73     }
74
75     public bool execute() {
76         parent_app.select_identity(this);
77
78         /* This function works as a GSourceFunc, so it can be passed to
79          * the main loop from other threads
80          */
81         return false;
82     }
83
84     public void return_identity(IdCard? id_card, bool update_card = true) {
85         this.id_card = id_card;
86         this.complete = true;
87
88         /* update id_card service list */
89         if (update_card && id_card != null && this.service != null && this.service != "")
90         {
91             bool duplicate_service = false;
92
93             foreach (string service in id_card.services)
94             {
95                 if (service == this.service)
96                     duplicate_service = true;
97             }
98             logger.trace("return_identity: duplicate_service=" + duplicate_service.to_string());
99             if (duplicate_service == false)
100             {
101                 id_card.add_service(this.service);
102
103                 this.id_card = this.parent_app.model.update_card(id_card);
104             }
105         }
106
107         return_if_fail(callback != null);
108         logger.trace("return_identity: invoking callback");
109         callback(this);
110     }
111
112 #if OS_WIN32
113     /* For synchronisation between RPC thread and main loop. Because
114      * these objects are not refcounted, it's best to tie them to the
115      * lifecycle of the IdentityRequest object.
116      */
117     public Mutex mutex;
118     public Cond cond;
119 #endif
120 }