diff options
Diffstat (limited to 'gsxws')
-rw-r--r-- | gsxws/objectify.py | 2 | ||||
-rw-r--r-- | gsxws/products.py | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/gsxws/objectify.py b/gsxws/objectify.py index 96b7c6e..43d6426 100644 --- a/gsxws/objectify.py +++ b/gsxws/objectify.py @@ -48,7 +48,7 @@ def gsx_date(value): def gsx_boolean(value): - return value == 'Y' + return value == 'Y' or value == 'true' class GsxPriceElement(): diff --git a/gsxws/products.py b/gsxws/products.py index 8905b2b..654bef3 100644 --- a/gsxws/products.py +++ b/gsxws/products.py @@ -137,6 +137,16 @@ class Product(GsxObject): self.serialNumber = ad.serialNumber return ad + def is_unlocked(self, ad=None): + """ + Returns true if this iOS device is unlocked + """ + import re + return ad.unlocked or (re.search("Unlock", ad.nextTetherPolicyDetails) is not None) + + def is_locked(self): + return not self.is_unlocked() + if __name__ == '__main__': import sys |