Logging updates
[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
75   public IdCard() {
76           stdout.printf("new IdCard!\n");
77   }
78
79 #if GNOME_KEYRING
80   private unowned string _password;
81   public string password {
82     get {
83       return (_password!=null) ? _password : "";
84     }
85     set {
86       if (_password != null) {
87         GnomeKeyring.memory_free((void *)_password);
88         _password = null;
89       }
90       if (value != null)
91         _password = GnomeKeyring.memory_strdup(value); 
92     }
93   }
94 #else
95   public string password { get; set; default = null; }
96 #endif
97
98   public string issuer { get; set; default = ""; }
99   
100   public Rule[] rules {get; set; default = {};}
101   public string[] services { get; set; default = {}; }
102   public bool temporary {get; set; default = false; }
103
104   public TrustAnchor trust_anchor  { get; set; default = new TrustAnchor (); }
105   
106   public unowned string nai { get {  _nai = username + "@" + issuer; return _nai;}}
107
108   public bool store_password { get; set; default = false; }
109
110   public bool IsNoIdentity() 
111   {
112     return (display_name == NO_IDENTITY);
113   }
114
115   public enum DiffFlags {
116     DISPLAY_NAME,
117     USERNAME,
118     PASSWORD,
119     ISSUER,
120     RULES,
121     SERVICES,
122     TRUST_ANCHOR;
123   }
124
125   public int Compare(IdCard other)
126   {
127     int diff = 0;
128     if (this.display_name != other.display_name)
129       diff |= 1 << DiffFlags.DISPLAY_NAME;
130     if (this.username != other.username)
131       diff |= 1 << DiffFlags.USERNAME;
132     if (this.password != other.password)
133       diff |= 1 << DiffFlags.PASSWORD;
134     if (this.issuer != other.issuer)
135       diff |= 1 << DiffFlags.ISSUER;
136     if (CompareRules(this.rules, other.rules)!=0)
137       diff |= 1 << DiffFlags.RULES;
138     if (CompareStringArray(this.services, other.services)!=0)
139       diff |= 1 << DiffFlags.SERVICES;
140     if (this.trust_anchor.Compare(other.trust_anchor)!=0)
141       diff |= 1 << DiffFlags.TRUST_ANCHOR;
142     stdout.printf("Diff Flags: %x\n", diff);
143     return diff;
144   }
145
146   public static IdCard NewNoIdentity() 
147   { 
148     IdCard card = new IdCard();
149     card.display_name = NO_IDENTITY;
150     return card;
151   }
152
153   ~IdCard() {
154     password = null;
155   }
156 }
157
158 public int CompareRules(Rule[] a, Rule[] b)
159 {
160   if (a.length != b.length)
161     return 1;
162   for (int i=0; i<a.length; i++) {
163     if (a[i].Compare(b[i]) != 0)
164       return 1;
165   }
166   return 0;
167 }
168
169 public int CompareStringArray(string[] a, string [] b)
170 {
171   if (a.length != b.length)
172     return 1;
173   for (int i=0; i<a.length; i++) {
174     if (a[i] != b[i])
175       return 1;
176   }
177   return 0;
178 }