2e0af57af34986f9871a7abe1e75af26644927f0
[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     if (this.username != other.username)
126       diff |= 1 << DiffFlags.USERNAME;
127     if (this.password != other.password)
128       diff |= 1 << DiffFlags.PASSWORD;
129     if (this.issuer != other.issuer)
130       diff |= 1 << DiffFlags.ISSUER;
131     if (CompareRules(this.rules, other.rules)!=0)
132       diff |= 1 << DiffFlags.RULES;
133     if (CompareStringArray(this.services, other.services)!=0)
134       diff |= 1 << DiffFlags.SERVICES;
135     if (this.trust_anchor.Compare(other.trust_anchor)!=0)
136       diff |= 1 << DiffFlags.TRUST_ANCHOR;
137     stdout.printf("Diff Flags: %x\n", diff);
138     return diff;
139   }
140
141   public static IdCard NewNoIdentity() 
142   { 
143     IdCard card = new IdCard();
144     card.display_name = NO_IDENTITY;
145     return card;
146   }
147
148   ~IdCard() {
149     password = null;
150   }
151 }
152
153 public int CompareRules(Rule[] a, Rule[] b)
154 {
155   if (a.length != b.length)
156     return 1;
157   for (int i=0; i<a.length; i++) {
158     if (a[i].Compare(b[i]) != 0)
159       return 1;
160   }
161   return 0;
162 }
163
164 public int CompareStringArray(string[] a, string [] b)
165 {
166   if (a.length != b.length)
167     return 1;
168   for (int i=0; i<a.length; i++) {
169     if (a[i] != b[i])
170       return 1;
171   }
172   return 0;
173 }