1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.service.protocol;
import java.util.*;
import net.java.sip.communicator.util.*;
/**
* The AccountID is an account identifier that, uniquely represents a specific
* user account over a specific protocol. The class needs to be extended by
* every protocol implementation because of its protected
* constructor. The reason why this constructor is protected is mostly avoiding
* confusion and letting people (using the protocol provider service) believe
* that they are the ones who are supposed to instantiate the accountid class.
* <p>
* Every instance of the <tt>ProtocolProviderService</tt>, created through the
* ProtocolProviderFactory is assigned an AccountID instance, that uniquely
* represents it and whose string representation (obtained through the
* getAccountUID() method) can be used for identification of persistently stored
* account details.
* <p>
* Account id's are guaranteed to be different for different accounts and in the
* same time are bound to be equal for multiple installations of the same
* account.
*
* @author Emil Ivov
* @author Lubomir Marinov
* @author Pawel Domas
*/
public abstract class AccountID
{
/**
* The <tt>Logger</tt> used by the <tt>AccountID</tt> class and its
* instances for logging output.
*/
private static final Logger logger = Logger.getLogger(AccountID.class);
/**
* The default properties key prefix used in lib/jitsi-defaults.properties
*/
protected static final String DEFAULTS_PREFIX
= "net.java.sip.communicator.service.protocol.";
/**
* The protocol display name. In the case of overridden protocol name this
* would be the new name.
*/
private final String protocolDisplayName;
/**
* The real protocol name.
*/
private final String protocolName;
/**
* Allows a specific set of account properties to override a given default
* protocol name (e.g. account registration wizards which want to present a
* well-known protocol name associated with the account that is different
* from the name of the effective protocol).
* <p>
* Note: The logic of the SIP protocol implementation at the time of this
* writing modifies <tt>accountProperties</tt> to contain the default
* protocol name if an override hasn't been defined. Since the desire is to
* enable all account registration wizards to override the protocol name,
* the current implementation places the specified
* <tt>defaultProtocolName</tt> in a similar fashion.
* </p>
*
* @param accountProperties a Map containing any other protocol and
* implementation specific account initialization properties
* @param defaultProtocolName the protocol name to be used in case
* <tt>accountProperties</tt> doesn't provide an overriding value
* @return the protocol name
*/
private static final String getOverriddenProtocolName(
Map<String, String> accountProperties, String defaultProtocolName)
{
String key = ProtocolProviderFactory.PROTOCOL;
String protocolName = accountProperties.get(key);
if ((protocolName == null) && (defaultProtocolName != null))
{
protocolName = defaultProtocolName;
accountProperties.put(key, protocolName);
}
return protocolName;
}
/**
* Contains all implementation specific properties that define the account.
* The exact names of the keys are protocol (and sometimes implementation)
* specific.
* Currently, only String property keys and values will get properly stored.
* If you need something else, please consider converting it through custom
* accessors (get/set) in your implementation.
*/
protected Map<String, String> accountProperties = null;
/**
* A String uniquely identifying the user for this particular account.
*/
private final String userID;
/**
* A String uniquely identifying this account, that can also be used for
* storing and unambiguously retrieving details concerning it.
*/
private final String accountUID;
/**
* The name of the service that defines the context for this account.
*/
private final String serviceName;
/**
* Creates an account id for the specified provider userid and
* accountProperties.
* If account uid exists in account properties, we are loading the account
* and so load its value from there, prevent changing account uid
* when server changed (serviceName has changed).
* @param userID a String that uniquely identifies the user.
* @param accountProperties a Map containing any other protocol and
* implementation specific account initialization properties
* @param protocolName the name of the protocol implemented by the provider
* that this id is meant for.
* @param serviceName the name of the service (e.g. iptel.org, jabber.org,
* icq.com) that this account is registered with.
*/
protected AccountID( String userID,
Map<String, String> accountProperties,
String protocolName,
String serviceName)
{
/*
* Allow account registration wizards to override the default protocol
* name through accountProperties for the purposes of presenting a
* well-known protocol name associated with the account that is
* different from the name of the effective protocol.
*/
this.protocolDisplayName
= getOverriddenProtocolName(accountProperties, protocolName);
this.protocolName = protocolName;
this.userID = userID;
this.accountProperties
= new HashMap<String, String>(accountProperties);
this.serviceName = serviceName;
String existingAccountUID =
accountProperties.get(ProtocolProviderFactory.ACCOUNT_UID);
if(existingAccountUID == null)
{
//create a unique identifier string
this.accountUID
= protocolDisplayName
+ ":"
+ userID
+ "@"
+ ((serviceName == null) ? "" : serviceName);
}
else
{
this.accountUID = existingAccountUID;
}
}
/**
* Returns the user id associated with this account.
*
* @return A String identifying the user inside this particular service.
*/
public String getUserID()
{
return userID;
}
/**
* Returns a name that can be displayed to the user when referring to this
* account.
*
* @return A String identifying the user inside this particular service.
*/
public String getDisplayName()
{
// If the ACCOUNT_DISPLAY_NAME property has been set for this account
// we'll be using it as a display name.
String key = ProtocolProviderFactory.ACCOUNT_DISPLAY_NAME;
String accountDisplayName = accountProperties.get(key);
if (accountDisplayName != null && accountDisplayName.length() > 0)
{
return accountDisplayName;
}
// Otherwise construct a display name.
String returnValue = getUserID();
String protocolName = getProtocolDisplayName();
if (protocolName != null && protocolName.trim().length() > 0)
returnValue += " (" + protocolName + ")";
return returnValue;
}
/**
* Returns the display name of the protocol.
*
* @return the display name of the protocol
*/
public String getProtocolDisplayName()
{
return protocolDisplayName;
}
/**
* Returns the name of the protocol.
*
* @return the name of the protocol
*/
public String getProtocolName()
{
return protocolName;
}
/**
* Returns a String uniquely identifying this account, guaranteed to remain
* the same across multiple installations of the same account and to always
* be unique for differing accounts.
* @return String
*/
public String getAccountUniqueID()
{
return accountUID;
}
/**
* Returns a Map containing protocol and implementation account
* initialization properties.
* @return a Map containing protocol and implementation account
* initialization properties.
*/
public Map<String, String> getAccountProperties()
{
return new HashMap<String, String>(accountProperties);
}
/**
* Returns the specific account property.
*
* @param key property key
* @param defaultValue default value if the property does not exist
* @return property value corresponding to property key
*/
public boolean getAccountPropertyBoolean(Object key, boolean defaultValue)
{
String value = getAccountPropertyString(key);
if(value == null)
value = getDefaultString(key.toString());
return (value == null) ? defaultValue : Boolean.parseBoolean(value);
}
/**
* Gets the value of a specific property as a signed decimal integer. If the
* specified property key is associated with a value in this
* <tt>AccountID</tt>, the string representation of the value is parsed into
* a signed decimal integer according to the rules of
* {@link Integer#parseInt(String)} . If parsing the value as a signed
* decimal integer fails or there is no value associated with the specified
* property key, <tt>defaultValue</tt> is returned.
*
* @param key the key of the property to get the value of as a
* signed decimal integer
* @param defaultValue the value to be returned if parsing the value of the
* specified property key as a signed decimal integer fails or there is no
* value associated with the specified property key in this
* <tt>AccountID</tt>
* @return the value of the property with the specified key in this
* <tt>AccountID</tt> as a signed decimal integer; <tt>defaultValue</tt> if
* parsing the value of the specified property key fails or no value is
* associated in this <tt>AccountID</tt> with the specified property name
*/
public int getAccountPropertyInt(Object key, int defaultValue)
{
String stringValue = getAccountPropertyString(key);
int intValue = defaultValue;
if ((stringValue == null) || (stringValue.isEmpty()))
{
stringValue = getDefaultString(key.toString());
}
if ((stringValue != null) && (stringValue.length() > 0))
{
try
{
intValue = Integer.parseInt(stringValue);
}
catch (NumberFormatException ex)
{
logger.error("Failed to parse account property " + key
+ " value " + stringValue + " as an integer", ex);
}
}
return intValue;
}
/**
* Returns the account property string corresponding to the given key.
*
* @param key the key, corresponding to the property string we're looking
* for
* @return the account property string corresponding to the given key
*/
public String getAccountPropertyString(Object key)
{
return getAccountPropertyString(key, null);
}
/**
* Returns the account property string corresponding to the given key.
*
* @param key the key, corresponding to the property string we're looking
* for
* @param defValue the default value returned when given <tt>key</tt>
* is not present
* @return the account property string corresponding to the given key
*/
public String getAccountPropertyString(Object key, String defValue)
{
String value = accountProperties.get(key);
if(value == null)
value = getDefaultString(key.toString());
return (value == null) ? defValue : value;
}
/**
* Adds a property to the map of properties for this account identifier.
*
* @param key the key of the property
* @param value the property value
*/
public void putAccountProperty(String key, String value)
{
accountProperties.put(key, value);
}
/**
* Adds property to the map of properties for this account
* identifier.
* @param key the key of the property
* @param value the property value
*/
public void putAccountProperty(String key, Object value)
{
accountProperties.put(key, String.valueOf(value));
}
/**
* Removes specified account property.
* @param key the key to remove.
*/
public void removeAccountProperty(String key)
{
accountProperties.remove(key);
}
/**
* Returns a hash code value for the object. This method is
* supported for the benefit of hashtables such as those provided by
* <tt>java.util.Hashtable</tt>.
* <p>
* @return a hash code value for this object.
* @see java.lang.Object#equals(java.lang.Object)
* @see java.util.Hashtable
*/
@Override
public int hashCode()
{
return (accountUID == null)? 0 : accountUID.hashCode();
}
/**
* Indicates whether some other object is "equal to" this account id.
* <p>
* @param obj the reference object with which to compare.
* @return <tt>true</tt> if this object is the same as the obj
* argument; <tt>false</tt> otherwise.
* @see #hashCode()
* @see java.util.Hashtable
*/
@Override
public boolean equals(Object obj)
{
if (this == obj)
return true;
return (obj != null)
&& getClass().isInstance(obj)
&& userID.equals(((AccountID)obj).userID);
}
/**
* Returns a string representation of this account id (same as calling
* getAccountUniqueID()).
*
* @return a string representation of this account id.
*/
@Override
public String toString()
{
return getAccountUniqueID();
}
/**
* Returns the name of the service that defines the context for this
* account. Often this name would be an sqdn or even an ipaddress but this
* would not always be the case (e.g. p2p providers may return a name that
* does not directly correspond to an IP address or host name).
* <p>
* @return the name of the service that defines the context for this
* account.
*/
public String getService()
{
return this.serviceName;
}
/**
* Returns a string that could be directly used (or easily converted to) an
* address that other users of the protocol can use to communicate with us.
* By default this string is set to userid@servicename. Protocol
* implementors should override it if they'd need it to respect a different
* syntax.
*
* @return a String in the form of userid@service that other protocol users
* should be able to parse into a meaningful address and use it to
* communicate with us.
*/
public String getAccountAddress()
{
String userID = getUserID();
return (userID.indexOf('@') > 0) ? userID
: (userID + "@" + getService());
}
/**
* Indicates if this account is currently enabled.
* @return <tt>true</tt> if this account is enabled, <tt>false</tt> -
* otherwise.
*/
public boolean isEnabled()
{
return !getAccountPropertyBoolean(
ProtocolProviderFactory.IS_ACCOUNT_DISABLED, false);
}
/**
* The address of the server we will use for this account
*
* @return String
*/
public String getServerAddress()
{
return getAccountPropertyString(ProtocolProviderFactory.SERVER_ADDRESS);
}
/**
* Get the {@link ProtocolProviderFactory#ACCOUNT_DISPLAY_NAME} property.
*
* @return the {@link ProtocolProviderFactory#ACCOUNT_DISPLAY_NAME}
* property value.
*/
public String getAccountDisplayName()
{
return getAccountPropertyString(
ProtocolProviderFactory.ACCOUNT_DISPLAY_NAME);
}
/**
* Sets {@link ProtocolProviderFactory#ACCOUNT_DISPLAY_NAME} property value.
*
* @param displayName the account display name value to set.
*/
public void setAccountDisplayName(String displayName)
{
setOrRemoveIfEmpty(ProtocolProviderFactory.ACCOUNT_DISPLAY_NAME,
displayName);
}
/**
* Returns the password of the account.
*
* @return the password of the account.
*/
public String getPassword()
{
return getAccountPropertyString(ProtocolProviderFactory.PASSWORD);
}
/**
* Sets the password of the account.
*
* @param password the password of the account.
*/
public void setPassword(String password)
{
setOrRemoveIfEmpty(ProtocolProviderFactory.PASSWORD, password);
}
/**
* The authorization name
*
* @return String auth name
*/
public String getAuthorizationName()
{
return getAccountPropertyString(
ProtocolProviderFactory.AUTHORIZATION_NAME);
}
/**
* Sets authorization name.
*
* @param authName String
*/
public void setAuthorizationName(String authName)
{
setOrRemoveIfEmpty(
ProtocolProviderFactory.AUTHORIZATION_NAME,
authName);
}
/**
* The port on the specified server
*
* @return int
*/
public String getServerPort()
{
return getAccountPropertyString(ProtocolProviderFactory.SERVER_PORT);
}
/**
* Sets the server port.
*
* @param port int
*/
public void setServerPort(String port)
{
setOrRemoveIfEmpty(ProtocolProviderFactory.SERVER_PORT, port);
}
/**
* Sets the server
*
* @param serverAddress String
*/
public void setServerAddress(String serverAddress)
{
setOrRemoveIfEmpty(ProtocolProviderFactory.SERVER_ADDRESS,
serverAddress);
}
/**
* Returns <tt>true</tt> if server was overriden.
* @return <tt>true</tt> if server was overriden.
*/
public boolean isServerOverridden()
{
return getAccountPropertyBoolean(
ProtocolProviderFactory.IS_SERVER_OVERRIDDEN, false);
}
/**
* Sets <tt>isServerOverridden</tt> property.
* @param isServerOverridden indicates if the server is overridden
*/
public void setServerOverridden(boolean isServerOverridden)
{
putAccountProperty(
ProtocolProviderFactory.IS_SERVER_OVERRIDDEN,
isServerOverridden);
}
/**
* Returns the protocol icon path stored under
* {@link ProtocolProviderFactory#PROTOCOL_ICON_PATH} key.
*
* @return the protocol icon path.
*/
public String getProtocolIconPath()
{
return getAccountPropertyString(
ProtocolProviderFactory.PROTOCOL_ICON_PATH);
}
/**
* Sets the protocl icon path that will be held under
* {@link ProtocolProviderFactory#PROTOCOL_ICON_PATH} key.
*
* @param iconPath a path to the protocol icon to set.
*/
public void setProtocolIconPath(String iconPath)
{
putAccountProperty(
ProtocolProviderFactory.PROTOCOL_ICON_PATH,
iconPath);
}
/**
* Returns the protocol icon path stored under
* {@link ProtocolProviderFactory#ACCOUNT_ICON_PATH} key.
*
* @return the protocol icon path.
*/
public String getAccountIconPath()
{
return getAccountPropertyString(
ProtocolProviderFactory.ACCOUNT_ICON_PATH);
}
/**
* Sets the account icon path that will be held under
* {@link ProtocolProviderFactory#ACCOUNT_ICON_PATH} key.
*
* @param iconPath a path to the account icon to set.
*/
public void setAccountIconPath(String iconPath)
{
putAccountProperty(
ProtocolProviderFactory.ACCOUNT_ICON_PATH,
iconPath);
}
/**
* Returns the DTMF method.
*
* @return the DTMF method.
*/
public String getDTMFMethod()
{
return getAccountPropertyString(ProtocolProviderFactory.DTMF_METHOD);
}
/**
* Sets the DTMF method.
*
* @param dtmfMethod the DTMF method to set
*/
public void setDTMFMethod(String dtmfMethod)
{
putAccountProperty(ProtocolProviderFactory.DTMF_METHOD, dtmfMethod);
}
/**
* Returns the minimal DTMF tone duration.
*
* @return The minimal DTMF tone duration.
*/
public String getDtmfMinimalToneDuration()
{
return getAccountPropertyString(
ProtocolProviderFactory.DTMF_MINIMAL_TONE_DURATION);
}
/**
* Sets the minimal DTMF tone duration.
*
* @param dtmfMinimalToneDuration The minimal DTMF tone duration to set.
*/
public void setDtmfMinimalToneDuration(String dtmfMinimalToneDuration)
{
putAccountProperty( ProtocolProviderFactory.DTMF_MINIMAL_TONE_DURATION,
dtmfMinimalToneDuration );
}
/**
* Gets the ID of the client certificate configuration.
* @return the ID of the client certificate configuration.
*/
public String getTlsClientCertificate()
{
return getAccountPropertyString(
ProtocolProviderFactory.CLIENT_TLS_CERTIFICATE);
}
/**
* Sets the ID of the client certificate configuration.
* @param id the client certificate configuration template ID.
*/
public void setTlsClientCertificate(String id)
{
setOrRemoveIfEmpty(ProtocolProviderFactory.CLIENT_TLS_CERTIFICATE, id);
}
/**
* Checks if the account is hidden.
* @return <tt>true</tt> if this account is hidden or <tt>false</tt>
* otherwise.
*/
public boolean isHidden()
{
return getAccountPropertyString(
ProtocolProviderFactory.IS_PROTOCOL_HIDDEN) != null;
}
/**
* Checks if the account config is hidden.
* @return <tt>true</tt> if the account config is hidden or <tt>false</tt>
* otherwise.
*/
public boolean isConfigHidden()
{
return getAccountPropertyString(
ProtocolProviderFactory.IS_ACCOUNT_CONFIG_HIDDEN) != null;
}
/**
* Returns the first <tt>ProtocolProviderService</tt> implementation
* corresponding to the preferred protocol
*
* @return the <tt>ProtocolProviderService</tt> corresponding to the
* preferred protocol
*/
public boolean isPreferredProvider()
{
String preferredProtocolProp
= getAccountPropertyString(
ProtocolProviderFactory.IS_PREFERRED_PROTOCOL);
if (preferredProtocolProp != null
&& preferredProtocolProp.length() > 0
&& Boolean.parseBoolean(preferredProtocolProp))
{
return true;
}
return false;
}
/**
* Set the account properties.
*
* @param accountProperties the properties of the account
*/
public void setAccountProperties(Map<String, String> accountProperties)
{
this.accountProperties = accountProperties;
}
/**
* Returns if the encryption protocol given in parameter is enabled.
*
* @param encryptionProtocolName The name of the encryption protocol
* ("ZRTP", "SDES" or "MIKEY").
*/
public boolean isEncryptionProtocolEnabled(String encryptionProtocolName)
{
// The default value is false, except for ZRTP.
boolean defaultValue = "ZRTP".equals(encryptionProtocolName);
return
getAccountPropertyBoolean(
ProtocolProviderFactory.ENCRYPTION_PROTOCOL_STATUS
+ "."
+ encryptionProtocolName,
defaultValue);
}
/**
* Sorts the enabled encryption protocol list given in parameter to match
* the preferences set for this account.
*
* @return Sorts the enabled encryption protocol list given in parameter to
* match the preferences set for this account.
*/
public List<String> getSortedEnabledEncryptionProtocolList()
{
Map<String, Integer> encryptionProtocols
= getIntegerPropertiesByPrefix(
ProtocolProviderFactory.ENCRYPTION_PROTOCOL,
true);
Map<String, Boolean> encryptionProtocolStatus
= getBooleanPropertiesByPrefix(
ProtocolProviderFactory.ENCRYPTION_PROTOCOL_STATUS,
true,
false);
// If the account is not yet configured, then ZRTP is activated by
// default.
if(encryptionProtocols.size() == 0)
{
encryptionProtocols.put(
ProtocolProviderFactory.ENCRYPTION_PROTOCOL + ".ZRTP",
0);
encryptionProtocolStatus.put(
ProtocolProviderFactory.ENCRYPTION_PROTOCOL_STATUS
+ ".ZRTP",
true);
}
List<String> sortedEncryptionProtocols
= new ArrayList<String>(encryptionProtocols.size());
// First: add all protocol in the right order.
for (Map.Entry<String, Integer> e : encryptionProtocols.entrySet())
{
int index = e.getValue();
// If the key is set.
if (index != -1)
{
if (index > sortedEncryptionProtocols.size())
index = sortedEncryptionProtocols.size();
String name = e.getKey();
sortedEncryptionProtocols.add(index, name);
}
}
// Second: remove all disabled protocols.
int namePrefixLength
= ProtocolProviderFactory.ENCRYPTION_PROTOCOL.length() + 1;
for (Iterator<String> i = sortedEncryptionProtocols.iterator();
i.hasNext();)
{
String name = i.next().substring(namePrefixLength);
if (!encryptionProtocolStatus.get(
ProtocolProviderFactory.ENCRYPTION_PROTOCOL_STATUS
+ "."
+ name))
{
i.remove();
}
}
return sortedEncryptionProtocols;
}
/**
* Returns a <tt>java.util.Map</tt> of <tt>String</tt>s containing the
* all property names that have the specified prefix and <tt>Boolean</tt>
* containing the value for each property selected. Depending on the value
* of the <tt>exactPrefixMatch</tt> parameter the method will (when false)
* or will not (when exactPrefixMatch is true) include property names that
* have prefixes longer than the specified <tt>prefix</tt> param.
* <p>
* Example:
* <p>
* Imagine a configuration service instance containing 2 properties
* only:<br>
* <code>
* net.java.sip.communicator.PROP1=value1<br>
* net.java.sip.communicator.service.protocol.PROP1=value2
* </code>
* <p>
* A call to this method with a prefix="net.java.sip.communicator" and
* exactPrefixMatch=true would only return the first property -
* net.java.sip.communicator.PROP1, whereas the same call with
* exactPrefixMatch=false would return both properties as the second prefix
* includes the requested prefix string.
* <p>
* @param prefix a String containing the prefix (the non dotted non-caps
* part of a property name) that we're looking for.
* @param exactPrefixMatch a boolean indicating whether the returned
* property names should all have a prefix that is an exact match of the
* the <tt>prefix</tt> param or whether properties with prefixes that
* contain it but are longer than it are also accepted.
* @param defaultValue the default value if the key is not set.
* @return a <tt>java.util.Map</tt> containing all property name String-s
* matching the specified conditions and the corresponding values as
* Boolean.
*/
public Map<String, Boolean> getBooleanPropertiesByPrefix(
String prefix,
boolean exactPrefixMatch,
boolean defaultValue)
{
String propertyName;
List<String> propertyNames
= getPropertyNamesByPrefix(prefix, exactPrefixMatch);
Map<String, Boolean> properties
= new HashMap<String, Boolean>(propertyNames.size());
for(int i = 0; i < propertyNames.size(); ++i)
{
propertyName = propertyNames.get(i);
properties.put(
propertyName,
getAccountPropertyBoolean(propertyName, defaultValue));
}
return properties;
}
/**
* Returns a <tt>java.util.Map</tt> of <tt>String</tt>s containing the
* all property names that have the specified prefix and <tt>Integer</tt>
* containing the value for each property selected. Depending on the value
* of the <tt>exactPrefixMatch</tt> parameter the method will (when false)
* or will not (when exactPrefixMatch is true) include property names that
* have prefixes longer than the specified <tt>prefix</tt> param.
* <p>
* Example:
* <p>
* Imagine a configuration service instance containing 2 properties
* only:<br>
* <code>
* net.java.sip.communicator.PROP1=value1<br>
* net.java.sip.communicator.service.protocol.PROP1=value2
* </code>
* <p>
* A call to this method with a prefix="net.java.sip.communicator" and
* exactPrefixMatch=true would only return the first property -
* net.java.sip.communicator.PROP1, whereas the same call with
* exactPrefixMatch=false would return both properties as the second prefix
* includes the requested prefix string.
* <p>
* @param prefix a String containing the prefix (the non dotted non-caps
* part of a property name) that we're looking for.
* @param exactPrefixMatch a boolean indicating whether the returned
* property names should all have a prefix that is an exact match of the
* the <tt>prefix</tt> param or whether properties with prefixes that
* contain it but are longer than it are also accepted.
* @return a <tt>java.util.Map</tt> containing all property name String-s
* matching the specified conditions and the corresponding values as
* Integer.
*/
public Map<String, Integer> getIntegerPropertiesByPrefix(
String prefix,
boolean exactPrefixMatch)
{
String propertyName;
List<String> propertyNames
= getPropertyNamesByPrefix(prefix, exactPrefixMatch);
Map<String, Integer> properties
= new HashMap<String, Integer>(propertyNames.size());
for(int i = 0; i < propertyNames.size(); ++i)
{
propertyName = propertyNames.get(i);
properties.put(
propertyName,
getAccountPropertyInt(propertyName, -1));
}
return properties;
}
/**
* Returns a <tt>java.util.List</tt> of <tt>String</tt>s containing the
* all property names that have the specified prefix. Depending on the value
* of the <tt>exactPrefixMatch</tt> parameter the method will (when false)
* or will not (when exactPrefixMatch is true) include property names that
* have prefixes longer than the specified <tt>prefix</tt> param.
* <p>
* Example:
* <p>
* Imagine a configuration service instance containing 2 properties
* only:<br>
* <code>
* net.java.sip.communicator.PROP1=value1<br>
* net.java.sip.communicator.service.protocol.PROP1=value2
* </code>
* <p>
* A call to this method with a prefix="net.java.sip.communicator" and
* exactPrefixMatch=true would only return the first property -
* net.java.sip.communicator.PROP1, whereas the same call with
* exactPrefixMatch=false would return both properties as the second prefix
* includes the requested prefix string.
* <p>
* @param prefix a String containing the prefix (the non dotted non-caps
* part of a property name) that we're looking for.
* @param exactPrefixMatch a boolean indicating whether the returned
* property names should all have a prefix that is an exact match of the
* the <tt>prefix</tt> param or whether properties with prefixes that
* contain it but are longer than it are also accepted.
* @return a <tt>java.util.List</tt>containing all property name String-s
* matching the specified conditions.
*/
public List<String> getPropertyNamesByPrefix(
String prefix,
boolean exactPrefixMatch)
{
List<String> resultKeySet = new LinkedList<String>();
for (String key : accountProperties.keySet())
{
int ix = key.lastIndexOf('.');
if(ix == -1)
continue;
String keyPrefix = key.substring(0, ix);
if(exactPrefixMatch)
{
if(prefix.equals(keyPrefix))
resultKeySet.add(key);
}
else
{
if(keyPrefix.startsWith(prefix))
resultKeySet.add(key);
}
}
return resultKeySet;
}
/**
* Sets the property a new value, but only if it's not <tt>null</tt> or
* the property is removed from the map.
*
* @param key the property key
* @param value the property value
*/
public void setOrRemoveIfNull(String key, String value)
{
if(value != null)
{
putAccountProperty(key, value);
}
else
{
removeAccountProperty(key);
}
}
/**
* Puts the new property value if it's not <tt>null</tt> nor empty.
* @param key the property key
* @param value the property value
*/
public void setOrRemoveIfEmpty(String key, String value)
{
setOrRemoveIfEmpty(key, value, false);
}
/**
* Puts the new property value if it's not <tt>null</tt> nor empty. If
* <tt>trim</tt> parameter is set to <tt>true</tt> the string will be
* trimmed, before checked for emptiness.
*
* @param key the property key
* @param value the property value
* @param trim <tt>true</tt> if the value will be trimmed, before
* <tt>isEmpty()</tt> is called.
*/
public void setOrRemoveIfEmpty(String key, String value, boolean trim)
{
if( value != null
&& (trim ? !value.trim().isEmpty() : !value.isEmpty()) )
{
putAccountProperty(key, value);
}
else
{
removeAccountProperty(key);
}
}
/**
* Stores configuration properties held by this object into given
* <tt>accountProperties</tt> map.
*
* @param protocolIconPath the path to the protocol icon is used
* @param accountIconPath the path to the account icon if used
* @param accountProperties output properties map
*/
public void storeProperties( String protocolIconPath,
String accountIconPath,
Map<String, String> accountProperties )
{
if(protocolIconPath != null)
setProtocolIconPath(protocolIconPath);
if(accountIconPath != null)
setAccountIconPath(accountIconPath);
mergeProperties(this.accountProperties, accountProperties);
// Removes encrypted password property, as it will be restored during
// account storage, but only if the password property is present.
accountProperties.remove("ENCRYPTED_PASSWORD");
}
/**
* Gets default property value for given <tt>key</tt>.
*
* @param key the property key
* @return default property value for given<tt>key</tt>
*/
protected String getDefaultString(String key)
{
return getDefaultStr(key);
}
/**
* Gets default property value for given <tt>key</tt>.
*
* @param key the property key
* @return default property value for given<tt>key</tt>
*/
public static String getDefaultStr(String key)
{
return ProtocolProviderActivator
.getConfigurationService()
.getString(DEFAULTS_PREFIX +key);
}
/**
* Copies all properties from <tt>input</tt> map to <tt>output</tt> map.
* @param input source properties map
* @param output destination properties map
*/
public static void mergeProperties( Map<String, String> input,
Map<String, String> output )
{
for(String key : input.keySet())
{
output.put(key, input.get(key));
}
}
}
|