Mercurial > libervia-web
annotate src/browser/sat_browser/jid.py @ 518:3d8e8f693576
browser_side: avoid some confusions between jid object 1. as an instance of JID or 2. as a str
author | souliane <souliane@mailoo.org> |
---|---|
date | Tue, 02 Sep 2014 21:13:59 +0200 |
parents | da690ef8019e |
children | 138336986bd0 |
rev | line source |
---|---|
13 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
339
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
4 # Libervia: a Salut à Toi frontend |
340 | 5 # Copyright (C) 2011, 2012, 2013, 2014 Jérôme Poisson <goffi@goffi.org> |
13 | 6 |
339
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
7 # This program is free software: you can redistribute it and/or modify |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
8 # it under the terms of the GNU Affero General Public License as published by |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
9 # the Free Software Foundation, either version 3 of the License, or |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
10 # (at your option) any later version. |
13 | 11 |
339
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
12 # This program is distributed in the hope that it will be useful, |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
15 # GNU Affero General Public License for more details. |
13 | 16 |
339
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
17 # You should have received a copy of the GNU Affero General Public License |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
303
diff
changeset
|
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
13 | 19 |
515
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
20 # FIXME: Libervia should use sat_frontends.tools.jid but pyjamas doesn't |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
21 # know the unicode type and also experiences issues with __new__. |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
22 |
13 | 23 |
274
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
24 class JID(object): |
13 | 25 """This class help manage JID (Node@Domaine/Resource)""" |
26 | |
27 def __init__(self, jid): | |
515
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
28 self.__raw = str(self.__normalize(jid)) |
13 | 29 self.__parse() |
30 | |
515
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
31 @classmethod |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
32 def __normalize(cls, jid): |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
33 """Naive normalization before instantiating and parsing the JID""" |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
34 if not jid: |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
35 return jid |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
36 tokens = jid.split('/') |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
37 tokens[0] = tokens[0].lower() # force node and domain to lower-case |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
38 return '/'.join(tokens) |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
39 |
13 | 40 def __parse(self): |
515
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
41 """Find node domain and resource""" |
274
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
42 node_end = self.__raw.find('@') |
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
43 if node_end < 0: |
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
44 node_end = 0 |
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
45 domain_end = self.__raw.find('/') |
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
46 if domain_end < 1: |
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
47 domain_end = len(self.__raw) |
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
48 self.node = self.__raw[:node_end] |
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
49 self.domain = self.__raw[(node_end + 1) if node_end else 0:domain_end] |
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
50 self.resource = self.__raw[domain_end + 1:] |
13 | 51 if not node_end: |
274
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
52 self.bare = self.__raw |
13 | 53 else: |
274
886b47896f3c
browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
54 self.bare = self.node + '@' + self.domain |
19 | 55 |
56 def __str__(self): | |
57 return self.__raw.__str__() | |
13 | 58 |
59 def is_valid(self): | |
515
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
60 """ |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
61 @return: True if the JID is XMPP compliant |
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
62 """ |
13 | 63 #FIXME: always return True for the moment |
515
da690ef8019e
browser_side: force JID's node and domain to lower-case
souliane <souliane@mailoo.org>
parents:
467
diff
changeset
|
64 return self.domain != '' |
303
6ce8515ee8f5
browser_side: fix internal JID class equality operator
souliane <souliane@mailoo.org>
parents:
274
diff
changeset
|
65 |
6ce8515ee8f5
browser_side: fix internal JID class equality operator
souliane <souliane@mailoo.org>
parents:
274
diff
changeset
|
66 def __eq__(self, other): |
6ce8515ee8f5
browser_side: fix internal JID class equality operator
souliane <souliane@mailoo.org>
parents:
274
diff
changeset
|
67 """Redefine equality operator to implement the naturally expected test""" |
6ce8515ee8f5
browser_side: fix internal JID class equality operator
souliane <souliane@mailoo.org>
parents:
274
diff
changeset
|
68 return self.node == other.node and self.domain == other.domain and self.resource == other.resource |