-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrt_tickets_dumper.py
159 lines (147 loc) · 6.06 KB
/
rt_tickets_dumper.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import argparse
import re
import requests
import os
import sys
class RtDumper:
attachments_regexp = re.compile('(?P<attachment_id>\d+):\s?(?P<filename>.+)\s\(')
useragent = 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36'
def __init__(self, dump_directory, rt_host, username, password, schema='http'):
self.dump_directory = dump_directory
self.rt_host = rt_host
self.username = username
self.password = password
self.schema = schema
self.referer = '{0}://{1}/'.format(self.schema, self.rt_host)
self.headers = {
'User-Agent': self.useragent,
'Referer': self.referer
}
self.cookies_dict = self._get_session_cookies()
def _get_session_cookies(self):
session = requests.Session()
rt_auth_url = '{0}://{1}/'.format(self.schema, self.rt_host)
session.post(rt_auth_url, data={'user': self.username, 'pass': self.password}, verify=False)
try:
rt_cookies = session.cookies
except:
rt_cookies = None
session.close()
return rt_cookies
def get_ticket_history(self, ticket_id):
if self.cookies_dict:
url = '{0}://{1}/REST/1.0/ticket/{2}/history?format=l'.format(self.schema, self.rt_host, ticket_id)
req = requests.get(url, headers=self.headers, cookies=self.cookies_dict, verify=False)
response = req.content
if '# Ticket {0} does not exist.'.format(ticket_id) not in response:
ticket_download_dir = os.path.join(self.dump_directory, str(ticket_id))
if not os.path.isdir(ticket_download_dir):
os.makedirs(ticket_download_dir)
with open(os.path.join(ticket_download_dir, 'ticket_history.txt'), 'w') as outfile:
outfile.write(response)
return True
else:
return
def download_attachment(self, ticket_id, attachment_id, attachment_filename):
if self.cookies_dict:
url = '{0}://{1}/REST/1.0/ticket/{2}/attachments/{3}/content'.format(self.schema,
self.rt_host,
ticket_id,
attachment_id
)
req = requests.get(url, headers=self.headers, cookies=self.cookies_dict, verify=False)
try:
attachment = req.content.split('\n\n', 1)[1]
ticket_download_dir = os.path.join(self.dump_directory, str(ticket_id))
if not os.path.isdir(ticket_download_dir):
os.makedirs(ticket_download_dir)
with open(os.path.join(ticket_download_dir, attachment_filename), 'wb') as outfile:
outfile.write(attachment)
except IndexError:
pass
def get_ticket_attachments(self, ticket_id):
if self.cookies_dict:
url = '{0}://{1}/REST/1.0/ticket/{2}/attachments'.format(self.schema, self.rt_host, ticket_id)
req = requests.get(url, headers=self.headers, cookies=self.cookies_dict, verify=False)
response = req.text
for line in response.splitlines():
if self.attachments_regexp.search(line):
attachment_id, filename = self.attachments_regexp.search(line).groups()
if filename != '(Unnamed)':
self.download_attachment(ticket_id, attachment_id, filename)
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Tool for Best Practical Request Tracker tickets dumping.')
parser.add_argument(
'-f',
'--folder',
help='Directory for tickets export (will be created if does not exist).',
required=True
)
parser.add_argument(
'-d',
'--domain',
help='Domain of Requests Tracker.',
required=True
)
parser.add_argument(
'-u',
'--username',
help='Your Requests Tracker account username.',
required=True
)
parser.add_argument(
'-p',
'--password',
help='Your Requests Tracker account password.',
required=True
)
parser.add_argument(
'-s',
'--schema',
help='Schema - http (by default) or https.',
default='http',
required=False
)
parser.add_argument(
'-t',
'--ticket',
help='Specify ticket id if you want download all data for single ticket.',
required=False
)
parser.add_argument(
'-ts',
'--startticket',
help='Specify ticket id to start if you want download all data for start ticket. id to the end',
required=False
)
args = parser.parse_args()
if not os.path.isdir(args.folder):
os.makedirs(args.folder)
dumper = RtDumper(
dump_directory=args.folder,
rt_host=args.domain,
username=args.username,
password=args.password,
schema = args.schema
)
if args.startticket:
current_ticket_id = int(args.startticket)
else:
current_ticket_id = 1
if args.ticket:
ticket_exists = dumper.get_ticket_history(args.ticket)
if not ticket_exists:
print('Ticket not found.')
sys.exit(0)
dumper.get_ticket_attachments(args.ticket)
else:
all_data_processed = 0
while not all_data_processed:
ticket_exists = dumper.get_ticket_history(current_ticket_id)
if ticket_exists:
dumper.get_ticket_attachments(current_ticket_id)
current_ticket_id += 1
else:
all_data_processed = 1