Added the MoonshotLogger class, which by default, does nothing. But if the --enable...
[moonshot-ui.git] / src / moonshot-id.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 class TrustAnchor : Object
33 {
34     public string ca_cert {get; set; default = "";}
35     public string subject {get; set; default = "";}
36     public string subject_alt  {get; set; default = "";}
37     public string server_cert  {get; set; default = "";}
38     public int Compare(TrustAnchor other)
39     {
40         if (this.ca_cert != other.ca_cert)
41             return 1;
42         if (this.subject != other.subject)
43             return 1;
44         if (this.subject_alt != other.subject_alt)
45             return 1;
46         if (this.server_cert != other.server_cert)
47             return 1;
48         return 0;
49     }
50 }
51
52 public struct Rule
53 {
54     public string pattern;
55     public string always_confirm;
56     public int Compare(Rule other) {
57         if (this.pattern != other.pattern)
58             return 1;
59         if (this.always_confirm != other.always_confirm)
60             return 1;
61         return 0;
62     }
63 }
64
65 public class IdCard : Object
66 {
67     public const string NO_IDENTITY = "No Identity";
68
69     private string _nai;
70   
71     public string display_name { get; set; default = ""; }
72   
73     public string username { get; set; default = ""; }
74 #if GNOME_KEYRING
75     private unowned string _password;
76     public string password {
77         get {
78             return (_password!=null) ? _password : "";
79         }
80         set {
81             if (_password != null) {
82                 GnomeKeyring.memory_free((void *)_password);
83                 _password = null;
84             }
85             if (value != null)
86                 _password = GnomeKeyring.memory_strdup(value); 
87         }
88     }
89 #else
90     public string password { get; set; default = null; }
91 #endif
92
93     public string issuer { get; set; default = ""; }
94   
95     public Rule[] rules {get; set; default = {};}
96     public string[] services { get; set; default = {}; }
97     public bool temporary {get; set; default = false; }
98
99     public TrustAnchor trust_anchor  { get; set; default = new TrustAnchor (); }
100   
101     public unowned string nai { get {  _nai = username + "@" + issuer; return _nai;}}
102
103     public bool store_password { get; set; default = false; }
104
105     public bool IsNoIdentity() 
106     {
107         return (display_name == NO_IDENTITY);
108     }
109
110     public enum DiffFlags {
111         DISPLAY_NAME,
112         USERNAME,
113         PASSWORD,
114         ISSUER,
115         RULES,
116         SERVICES,
117         TRUST_ANCHOR;
118     }
119
120     public int Compare(IdCard other)
121     {
122         int diff = 0;
123         if (this.display_name != other.display_name)
124             diff |= 1 << DiffFlags.DISPLAY_NAME;
125
126         if (this.username != other.username)
127             diff |= 1 << DiffFlags.USERNAME;
128
129         if (this.password != other.password)
130             diff |= 1 << DiffFlags.PASSWORD;
131
132         if (this.issuer != other.issuer)
133             diff |= 1 << DiffFlags.ISSUER;
134
135         if (CompareRules(this.rules, other.rules)!=0)
136             diff |= 1 << DiffFlags.RULES;
137
138         if (CompareStringArray(this.services, other.services)!=0)
139             diff |= 1 << DiffFlags.SERVICES;
140
141         if (this.trust_anchor.Compare(other.trust_anchor)!=0)
142             diff |= 1 << DiffFlags.TRUST_ANCHOR;
143
144         stdout.printf("Diff Flags: %x\n", diff);
145         return diff;
146     }
147
148     public static IdCard NewNoIdentity() 
149     { 
150         IdCard card = new IdCard();
151         card.display_name = NO_IDENTITY;
152         return card;
153     }
154
155     ~IdCard() {
156         password = null;
157     }
158 }
159
160 public int CompareRules(Rule[] a, Rule[] b)
161 {
162     if (a.length != b.length) {
163         return 1;
164     }
165
166     for (int i = 0; i < a.length; i++) {
167         if (a[i].Compare(b[i]) != 0) {
168             return 1;
169         }
170     }
171     return 0;
172 }
173
174 public int CompareStringArray(string[] a, string [] b)
175 {
176     if (a.length != b.length) {
177         return 1;
178     }
179
180     for (int i = 0; i < a.length; i++) {
181         if (a[i] != b[i]) {
182             return 1;
183         }
184     }
185     return 0;
186 }