-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlib.py
1982 lines (1564 loc) · 66.6 KB
/
lib.py
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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals # support both Python2 and 3
""" lib.py
PyOTRS lib
This code implements the PyOTRS library to provide access to the OTRS API (REST)
"""
import os
import io
import base64
import mimetypes
import json
import time
import datetime
import requests
import logging
log = logging.getLogger(__name__)
TICKET_CONNECTOR_CONFIG_DEFAULT = {
'Name': 'KomandConnectorREST',
'Config': {
'SessionCreate': {'RequestMethod': 'POST',
'Route': '/Session',
'Result': 'SessionID'},
'TicketCreate': {'RequestMethod': 'POST',
'Route': '/Ticket',
'Result': 'TicketID'},
'TicketGet': {'RequestMethod': 'GET',
'Route': '/Ticket/:TicketID',
'Result': 'Ticket'},
'TicketGetList': {'RequestMethod': 'GET',
'Route': '/TicketList',
'Result': 'Ticket'},
'TicketSearch': {'RequestMethod': 'GET',
'Route': '/Search',
'Result': 'TicketID'},
'TicketUpdate': {'RequestMethod': 'PATCH',
'Route': '/Update/:TicketID',
'Result': 'TicketID'},
}
}
FAQ_CONNECTOR_CONFIG_DEFAULT = {
'Name': 'GenericFAQConnectorREST',
'Config': {
'LanguageList': {'RequestMethod': 'GET',
'Route': '/LanguageList',
'Result': 'Language'},
'PublicCategoryList': {'RequestMethod': 'GET',
'Route': '/PublicCategoryList',
'Result': 'Category'},
'PublicFAQGet': {'RequestMethod': 'GET',
'Route': '/PublicFAQGet',
'Result': 'FAQItem'},
'PublicFAQSearch': {'RequestMethod': 'POST',
'Route': '/PublicFAQSearch',
'Result': 'ID'},
}
}
LINK_CONNECTOR_CONFIG_DEFAULT = {
'Name': 'GenericLinkConnectorREST',
'Config': {
'LinkAdd': {'RequestMethod': 'POST',
'Route': '/LinkAdd',
'Result': 'LinkAdd'},
'LinkDelete': {'RequestMethod': 'DELETE',
'Route': '/LinkDelete',
'Result': 'LinkDelete'},
'LinkDeleteAll': {'RequestMethod': 'DELETE',
'Route': '/LinkDeleteAll',
'Result': 'LinkDeleteAll'},
'LinkList': {'RequestMethod': 'GET',
'Route': '/LinkList',
'Result': 'LinkList'},
'PossibleLinkList': {'RequestMethod': 'GET',
'Route': '/PossibleLinkList',
'Result': 'PossibleLinkList'},
'PossibleObjectsList': {'RequestMethod': 'GET',
'Route': '/PossibleObjectsList',
'Result': 'PossibleObject'},
'PossibleTypesList': {'RequestMethod': 'GET',
'Route': '/PossibleTypesList',
'Result': 'PossibleType'},
}
}
class PyOTRSError(Exception):
def __init__(self, message):
super(PyOTRSError, self).__init__(message)
self.message = message
class ArgumentMissingError(PyOTRSError):
pass
class ArgumentInvalidError(PyOTRSError):
pass
class ResponseParseError(PyOTRSError):
pass
class SessionCreateError(PyOTRSError):
pass
class SessionNotCreated(PyOTRSError):
pass
class APIError(PyOTRSError):
pass
class HTTPError(PyOTRSError):
pass
class Article(object):
"""PyOTRS Article class """
def __init__(self, dct):
fields = {}
for key, value in dct.items():
fields.update({key: dct[key]})
try:
self.aid = int(fields.get("ArticleID"))
except TypeError:
self.aid = 0
self.fields = fields
self.attachments = self._parse_attachments()
self.fields.pop("Attachment", None)
self.dynamic_fields = self._parse_dynamic_fields()
self.fields.pop("DynamicField", None)
def __repr__(self):
if self.aid is not 0:
_len = len(self.attachments)
if _len == 0:
return "<ArticleID: {1}>".format(self.__class__.__name__, self.aid)
elif _len == 1:
return "<ArticleID: {1} (1 Attachment)>".format(self.__class__.__name__,
self.aid)
else:
return "<ArticleID: {1} ({2} Attachments)>".format(self.__class__.__name__,
self.aid, _len)
else:
return "<{0}>".format(self.__class__.__name__)
def to_dct(self, attachments=True, attachment_cont=True, dynamic_fields=True):
"""represent as nested dict compatible for OTRS
Args:
attachments (bool): if True will include, otherwise exclude:
"Attachment" (default: True)
attachment_cont (bool): if True will include, otherwise exclude:
"Attachment" > "Content" (default: True)
dynamic_fields (bool): if True will include, otherwise exclude:
"DynamicField" (default: True)
Returns:
**dict**: Article represented as dict for OTRS
"""
dct = {}
if attachments:
if self.attachments:
dct.update({"Attachment": [x.to_dct(content=attachment_cont) for x in
self.attachments]})
if dynamic_fields:
if self.dynamic_fields:
dct.update({"DynamicField": [x.to_dct() for x in self.dynamic_fields]})
if self.fields:
dct.update(self.fields)
return dct
def _parse_attachments(self):
"""parse Attachment from Ticket and return as **list** of **Attachment** objects"""
lst = self.fields.get("Attachment")
if lst:
return [Attachment(item) for item in lst]
else:
return []
def _parse_dynamic_fields(self):
"""parse DynamicField from Ticket and return as **list** of **DynamicField** objects"""
lst = self.fields.get("DynamicField")
if lst:
return [DynamicField.from_dct(item) for item in lst]
else:
return []
def attachment_get(self, a_filename):
"""attachment_get
Args:
a_filename (str): Filename of Attachment to retrieve
Returns:
**Attachment** or **None**
"""
result = [x for x in self.attachments if x.Filename == "{0}".format(a_filename)]
if result:
return result[0]
else:
return None
def dynamic_field_get(self, df_name):
"""dynamic_field_get
Args:
df_name (str): Name of DynamicField to retrieve
Returns:
**DynamicField** or **None**
"""
result = [x for x in self.dynamic_fields if x.name == "{0}".format(df_name)]
if result:
return result[0]
else:
return None
def field_get(self, f_name):
return self.fields.get(f_name)
def validate(self, validation_map=None):
"""validate data against a mapping dict - if a key is not present
then set it with a default value according to dict
Args:
validation_map (dict): A mapping for all Article fields that have to be set. During
validation every required field that is not set will be set to a default value
specified in this dict.
.. note::
There is also a blacklist (fields to be removed) but this is currently
hardcoded to *dynamic_fields* and *attachments*.
"""
if not validation_map:
validation_map = {"Body": "API created Article Body",
"Charset": "UTF8",
"MimeType": "text/plain",
"Subject": "API created Article",
"TimeUnit": 0}
for key, value in validation_map.items():
if not self.fields.get(key, None):
self.fields.update({key: value})
@classmethod
def _dummy(cls):
"""dummy data (for testing)
Returns:
**Article**: An Article object.
"""
return Article({"Subject": "Dümmy Subject",
"Body": "Hallo Bjørn,\n[kt]\n\n -- The End",
"TimeUnit": 0,
"MimeType": "text/plain",
"Charset": "UTF8"})
@classmethod
def _dummy_force_notify(cls):
"""dummy data (for testing)
Returns:
**Article**: An Article object.
"""
return Article({"Subject": "Dümmy Subject",
"Body": "Hallo Bjørn,\n[kt]\n\n -- The End",
"TimeUnit": 0,
"MimeType": "text/plain",
"Charset": "UTF8",
"ForceNotificationToUserID": [1, 2]})
class Attachment(object):
"""PyOTRS Attachment class """
def __init__(self, dct):
self.__dict__ = dct
def __repr__(self):
if hasattr(self, 'Filename'):
return "<{0}: {1}>".format(self.__class__.__name__, self.Filename)
else:
return "<{0}>".format(self.__class__.__name__)
def to_dct(self, content=True):
"""represent Attachment object as dict
Args:
content (bool): if True will include, otherwise exclude: "Content" (default: True)
Returns:
**dict**: Attachment represented as dict.
"""
dct = self.__dict__
if content:
return dct
else:
dct.pop("Content")
return dct
@classmethod
def create_basic(cls, Content=None, ContentType=None, Filename=None):
"""create a basic Attachment object
Args:
Content (str): base64 encoded content
ContentType (str): MIME type of content (e.g. text/plain)
Filename (str): file name (e.g. file.txt)
Returns:
**Attachment**: An Attachment object.
"""
return Attachment({'Content': Content,
'ContentType': ContentType,
'Filename': Filename})
@classmethod
def create_from_file(cls, file_path):
"""save Attachment to a folder on disc
Args:
file_path (str): The full path to the file from which an Attachment should be created.
Returns:
**Attachment**: An Attachment object.
"""
with io.open(file_path, 'rb') as f:
content = f.read()
content_type = mimetypes.guess_type(file_path)[0]
if not content_type:
content_type = "application/octet-stream"
return Attachment({'Content': base64.b64encode(content),
'ContentType': content_type,
'Filename': os.path.basename(file_path)})
def save_to_dir(self, folder="/tmp"):
"""save Attachment to a folder on disc
Args:
folder (str): The directory where this attachment should be saved to.
Returns:
**bool**: True
"""
if not hasattr(self, 'Content') or not hasattr(self, 'Filename'):
raise ValueError("invalid Attachment")
file_path = os.path.join(os.path.abspath(folder), self.Filename)
with open(file_path, 'wb') as f:
f.write(base64.b64decode(self.Content))
return True
@classmethod
def _dummy(cls):
"""dummy data (for testing)
Returns:
**Attachment**: An Attachment object.
"""
return Attachment.create_basic("YmFyCg==", "text/plain", "dümmy.txt")
class DynamicField(object):
"""PyOTRS DynamicField class
Args:
name (str): Name of OTRS DynamicField (required)
value (str): Value of OTRS DynamicField
search_operator (str): Search operator (defaults to: "Equals")
Valid options are:
"Equals", "Like", "GreaterThan", "GreaterThanEquals",
"SmallerThan", "SmallerThanEquals"
search_patterns (list): List of patterns (str or datetime) to search for
.. warning::
**PyOTRS only supports OTRS 5 style!**
DynamicField representation changed between OTRS 4 and OTRS 5.
"""
SEARCH_OPERATORS = ("Equals", "Like", "GreaterThan", "GreaterThanEquals",
"SmallerThan", "SmallerThanEquals",)
def __init__(self, name, value=None, search_patterns=None, search_operator="Equals"):
self.name = name
self.value = value
if not isinstance(search_patterns, list):
self.search_patterns = [search_patterns]
else:
self.search_patterns = search_patterns
if search_operator not in DynamicField.SEARCH_OPERATORS:
raise NotImplementedError("Invalid Operator: \"{0}\"".format(search_operator))
self.search_operator = search_operator
def __repr__(self):
return "<{0}: {1}: {2}>".format(self.__class__.__name__, self.name, self.value)
@classmethod
def from_dct(cls, dct):
"""create DynamicField from dct
Args:
dct (dict):
Returns:
**DynamicField**: A DynamicField object.
"""
return cls(name=dct["Name"], value=dct["Value"])
def to_dct(self):
"""represent DynamicField as dict
Returns:
**dict**: DynamicField as dict.
"""
return {"Name": self.name, "Value": self.value}
def to_dct_search(self):
"""represent DynamicField as dict for search operations
Returns:
**dict**: DynamicField as dict for search operations
"""
_lst = []
for item in self.search_patterns:
if isinstance(item, datetime.datetime):
item = item.strftime("%Y-%m-%d %H:%M:%S")
_lst.append(item)
return {"DynamicField_{0}".format(self.name): {self.search_operator: _lst}}
@classmethod
def _dummy1(cls):
"""dummy1 data (for testing)
Returns:
**DynamicField**: A list of DynamicField objects.
"""
return DynamicField(name="firstname", value="Jane")
@classmethod
def _dummy2(cls):
"""dummy2 data (for testing)
Returns:
**DynamicField**: A list of DynamicField objects.
"""
return DynamicField.from_dct({'Name': 'lastname', 'Value': 'Doe'})
class Ticket(object):
"""PyOTRS Ticket class
Args:
tid (int): OTRS Ticket ID as integer
fields (dict): OTRS Top Level fields
articles (list): List of Article objects
dynamic_fields (list): List of DynamicField objects
"""
def __init__(self, dct):
# store OTRS Top Level fields
self.fields = {}
self.fields.update(dct)
self.tid = int(self.fields.get("TicketID", 0))
self.articles = self._parse_articles()
self.fields.pop("Article", None)
self.dynamic_fields = self._parse_dynamic_fields()
self.fields.pop("DynamicField", None)
def __repr__(self):
if self.tid:
return "<{0}: {1}>".format(self.__class__.__name__, self.tid)
else:
return "<{0}>".format(self.__class__.__name__)
def _parse_articles(self):
"""parse Article from Ticket and return as **list** of **Article** objects"""
lst = self.fields.get("Article", [])
return [Article(item) for item in lst]
def _parse_dynamic_fields(self):
"""parse DynamicField from Ticket and return as **list** of **DynamicField** objects"""
lst = self.fields.get("DynamicField", [])
return [DynamicField.from_dct(item) for item in lst]
def to_dct(self,
articles=True,
article_attachments=True,
article_attachment_cont=True,
article_dynamic_fields=True,
dynamic_fields=True):
"""represent as nested dict
Args:
articles (bool): if True will include, otherwise exclude:
"Article" (default: True)
article_attachments (bool): if True will include, otherwise exclude:
"Article" > "Attachment" (default: True)
article_attachment_cont (bool): if True will include, otherwise exclude:
"Article" > "Attachment" > "Content" (default: True)
article_dynamic_fields (bool): if True will include, otherwise exclude:
"Article" > "DynamicField" (default: True)
dynamic_fields (bool): if True will include, otherwise exclude:
"DynamicField" (default: True)
Returns:
**dict**: Ticket represented as dict.
.. note::
Does not contain Articles or DynamicFields (currently)
"""
dct = {}
dct.update(self.fields)
if articles:
try:
if self.articles:
dct.update({"Article": [x.to_dct(attachments=article_attachments,
attachment_cont=article_attachment_cont,
dynamic_fields=article_dynamic_fields)
for x in self.articles]})
except AttributeError:
pass
if dynamic_fields:
try:
if self.dynamic_fields:
dct.update({"DynamicField": [x.to_dct() for x in self.dynamic_fields]})
except AttributeError:
pass
return {"Ticket": dct}
def article_get(self, aid):
"""article_get
Args:
aid (str): Article ID as either int or str
Returns:
**Article** or **None**
"""
result = [x for x in self.articles if x.field_get("ArticleID") == str(aid)]
return result[0] if result else None
def dynamic_field_get(self, df_name):
"""dynamic_field_get
Args:
df_name (str): Name of DynamicField to retrieve
Returns:
**DynamicField** or **None**
"""
result = [x for x in self.dynamic_fields if x.name == df_name]
return result[0] if result else None
def field_get(self, f_name):
return self.fields.get(f_name)
@classmethod
def create_basic(cls,
Title=None,
QueueID=None,
Queue=None,
TypeID=None,
Type=None,
StateID=None,
State=None,
PriorityID=None,
Priority=None,
CustomerUser=None):
"""create basic ticket
Args:
Title (str): OTRS Ticket Title
QueueID (str): OTRS Ticket QueueID (e.g. "1")
Queue (str): OTRS Ticket Queue (e.g. "raw")
TypeID (str): OTRS Ticket TypeID (e.g. "1")
Type (str): OTRS Ticket Type (e.g. "Problem")
StateID (str): OTRS Ticket StateID (e.g. "1")
State (str): OTRS Ticket State (e.g. "open" or "new")
PriorityID (str): OTRS Ticket PriorityID (e.g. "1")
Priority (str): OTRS Ticket Priority (e.g. "low")
CustomerUser (str): OTRS Ticket CustomerUser
Returns:
**Ticket**: A new Ticket object.
"""
if not Title:
raise ArgumentMissingError("Title is required")
if not Queue and not QueueID:
raise ArgumentMissingError("Either Queue or QueueID required")
if not State and not StateID:
raise ArgumentMissingError("Either State or StateID required")
if not Priority and not PriorityID:
raise ArgumentMissingError("Either Priority or PriorityID required")
if not CustomerUser:
raise ArgumentMissingError("CustomerUser is required")
if Type and TypeID:
raise ArgumentInvalidError("Either Type or TypeID - not both")
dct = {u"Title": Title}
if Queue:
dct.update({"Queue": Queue})
else:
dct.update({"QueueID": QueueID})
if Type:
dct.update({"Type": Type})
if TypeID:
dct.update({"TypeID": TypeID})
if State:
dct.update({"State": State})
else:
dct.update({"StateID": StateID})
if Priority:
dct.update({"Priority": Priority})
else:
dct.update({"PriorityID": PriorityID})
dct.update({"CustomerUser": CustomerUser})
for key, value in dct.items():
dct.update({key: value})
return Ticket(dct)
@classmethod
def _dummy(cls):
"""dummy data (for testing)
Returns:
**Ticket**: A Ticket object.
"""
return Ticket.create_basic(Queue=u"Raw",
State=u"open",
Priority=u"3 normal",
CustomerUser="root@localhost",
Title="Bäsic Ticket")
@staticmethod
def datetime_to_pending_time_text(datetime_object=None):
"""datetime_to_pending_time_text
Args:
datetime_object (Datetime)
Returns:
**str**: The pending time in the format required for OTRS REST interface.
"""
return {
"Year": datetime_object.year,
"Month": datetime_object.month,
"Day": datetime_object.day,
"Hour": datetime_object.hour,
"Minute": datetime_object.minute
}
class SessionStore(object):
"""Session ID: persistently store to and retrieve from to file
Args:
file_path (str): Path on disc
session_timeout (int): OTRS Session Timeout Value (to avoid reusing outdated session id
value (str): A Session ID as str
created (int): seconds as epoch when a session_id record was created
expires (int): seconds as epoch when a session_id record expires
Raises:
ArgumentMissingError
"""
def __init__(self, file_path=None, session_timeout=None,
value=None, created=None, expires=None):
if not file_path:
raise ArgumentMissingError("Argument file_path is required!")
if not session_timeout:
raise ArgumentMissingError("Argument session_timeout is required!")
self.file_path = file_path
self.timeout = session_timeout
self.value = value
self.created = created
self.expires = expires
def __repr__(self):
return "<{0}: {1}>".format(self.__class__.__name__, self.file_path)
def read(self):
"""Retrieve a stored Session ID from file
Returns:
**str** or **None**: Retrieved Session ID or None (if none could be read)
"""
if not os.path.isfile(self.file_path):
return None
if not SessionStore._validate_file_owner_and_permissions(self.file_path):
return None
with open(self.file_path, "r") as f:
content = f.read()
try:
data = json.loads(content)
self.value = data['session_id']
self.created = datetime.datetime.utcfromtimestamp(int(data['created']))
self.expires = (self.created +
datetime.timedelta(minutes=self.timeout))
if self.expires > datetime.datetime.utcnow():
return self.value # still valid
except ValueError:
return None
except KeyError:
return None
except Exception as err:
raise Exception("Exception Type: {0}: {1}".format(type(err), err))
def write(self, new_value):
"""Write and store a Session ID to file (rw for user only)
Args:
new_value (str): if none then empty value will be writen to file
Returns:
**bool**: **True** if successful, False **otherwise**.
"""
self.value = new_value
if os.path.isfile(self.file_path):
if not SessionStore._validate_file_owner_and_permissions(self.file_path):
raise IOError("File exists but is not ok (wrong owner/permissions)!")
with open(self.file_path, 'w') as f:
f.write(json.dumps({'created': str(int(time.time())),
'session_id': self.value}))
os.chmod(self.file_path, 384) # 384 is '0600'
# TODO 2016-04-23 (RH): check this
if not SessionStore._validate_file_owner_and_permissions(self.file_path):
raise IOError("Race condition: Something happened to file during the run!")
return True
def delete(self):
"""remove session id file (e.g. when it only contains an invalid session id
Raises:
NotImplementedError
Returns:
**bool**: **True** if successful, otherwise **False**.
.. todo::
(RH) implement this _remove_session_id_file
"""
raise NotImplementedError("Not yet done")
@staticmethod
def _validate_file_owner_and_permissions(full_file_path):
"""validate SessionStore file ownership and permissions
Args:
full_file_path (str): full path to file on disc
Returns:
**bool**: **True** if valid and correct, otherwise **False**...
"""
if not os.path.isfile(full_file_path):
raise IOError("Does not exist or not a file: {0}".format(full_file_path))
file_lstat = os.lstat(full_file_path)
if not file_lstat.st_uid == os.getuid():
return False
if not file_lstat.st_mode & 0o777 == 384:
""" check for unix permission User R+W only (0600)
>>> oct(384)
'0600' Python 2
>>> oct(384)
'0o600' Python 3 """
return False
return True
class Client(object):
"""PyOTRS Client class - includes Session handling
Args:
baseurl (str): Base URL for OTRS System, no trailing slash e.g. http://otrs.example.com
username (str): Username
password (str): Password
session_id_file (str): Session ID path on disc, used to persistently store Session ID
session_timeout (int): Session Timeout configured in OTRS (usually 28800 seconds = 8h)
session_validation_ticket_id (int): Ticket ID of an existing ticket - used to perform
several check - e.g. validate log in (defaults to 1)
webservice_config_ticket (dict): OTRS REST Web Service Name - Ticket Connector
webservice_config_faq (dict): OTRS REST Web Service Name - FAQ Connector
webservice_config_link (dict): OTRS REST Web Service Name - Link Connector
proxies (dict): Proxy settings - refer to requests docs for
more information - default to no proxies
https_verify (bool): Should HTTPS certificates be verified (defaults to True)
ca_cert_bundle (str): file path - if specified overrides python/system default for
Root CA bundle that will be used.
user_agent (str): optional HTTP UserAgent string
webservice_path (str): OTRS REST Web Service Path part - defaults to
"/otrs/nph-genericinterface.pl/Webservice/"
"""
def __init__(self,
baseurl=None,
username=None,
password=None,
session_id_file=None,
session_timeout=None,
session_validation_ticket_id=1,
webservice_config_ticket=None,
webservice_config_faq=None,
webservice_config_link=None,
proxies=None,
https_verify=True,
ca_cert_bundle=None,
user_agent=None,
webservice_path="/otrs/nph-genericinterface.pl/Webservice/"):
if not baseurl:
raise ArgumentMissingError("baseurl")
self.baseurl = baseurl.rstrip("/")
self.webservice_path = webservice_path
if not session_timeout:
self.session_timeout = 28800 # 8 hours is OTRS default
else:
self.session_timeout = session_timeout
if not session_id_file:
self.session_id_store = SessionStore(file_path="/tmp/.pyotrs_session_id",
session_timeout=self.session_timeout)
else:
self.session_id_store = SessionStore(file_path=session_id_file,
session_timeout=self.session_timeout)
self.session_validation_ticket_id = session_validation_ticket_id
# A dictionary for mapping OTRS WebService operations to HTTP Method, Route and
# Result string.
if not webservice_config_ticket:
webservice_config_ticket = TICKET_CONNECTOR_CONFIG_DEFAULT
if not webservice_config_faq:
webservice_config_faq = FAQ_CONNECTOR_CONFIG_DEFAULT
if not webservice_config_link:
webservice_config_link = LINK_CONNECTOR_CONFIG_DEFAULT
self.ws_ticket = TICKET_CONNECTOR_CONFIG_DEFAULT['Name']
self.ws_faq = FAQ_CONNECTOR_CONFIG_DEFAULT['Name']
self.ws_link = LINK_CONNECTOR_CONFIG_DEFAULT['Name']
self.routes_ticket = [x[1]["Route"] for x in webservice_config_ticket['Config'].items()]
self.routes_faq = [x[1]["Route"] for x in webservice_config_faq['Config'].items()]
self.routes_link = [x[1]["Route"] for x in webservice_config_link['Config'].items()]
webservice_config = {}
webservice_config.update(webservice_config_ticket['Config'])
webservice_config.update(webservice_config_faq['Config'])
webservice_config.update(webservice_config_link['Config'])
self.ws_config = webservice_config
if not proxies:
self.proxies = {"http": "", "https": "", "no": ""}
else:
if not isinstance(proxies, dict):
raise ValueError("Proxy settings need to be provided as dict!")
self.proxies = proxies
if https_verify:
if not ca_cert_bundle:
self.https_verify = https_verify
else:
ca_certs = os.path.abspath(ca_cert_bundle)
if not os.path.isfile(ca_certs):
raise ValueError("Certificate file does not exist: {0}".format(ca_certs))
self.https_verify = ca_certs
else:
self.https_verify = False
self.user_agent = user_agent
# credentials
self.username = username
self.password = password
# dummy initialization
self.operation = None
self.result_json = None
self.result = []
"""
GenericInterface::Operation::Session::SessionCreate
* session_check_is_valid
* session_create
* session_restore_or_set_up_new # try to get session_id from a (json) file on disc
"""
def session_check_is_valid(self, session_id=None):
"""check whether session_id is currently valid
Args:
session_id (str): optional If set overrides the self.session_id
Raises:
ArgumentMissingError: if session_id is not set
Returns:
**bool**: **True** if valid, otherwise **False**.
.. note::
Uses HTTP Method: GET
"""
self.operation = "TicketGet"
if not session_id:
raise ArgumentMissingError("session_id")
# TODO 2016-04-13 (RH): Is there a nicer way to check whether session is valid?!
payload = {"SessionID": session_id}
response = self._send_request(payload, ticket_id=self.session_validation_ticket_id)
return self._parse_and_validate_response(response)
def session_create(self):
"""create new (temporary) session (and Session ID)
Returns:
**bool**: **True** if successful, otherwise **False**.
.. note::