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
|
""" Models for Gerrit JSON data.
The MIT License
Copyright 2011 Sony Ericsson Mobile Communications. All rights reserved.
Copyright 2012 Sony Mobile Communications. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
from pygerrit import from_json
class Account(object):
""" Gerrit user account (name and email address). """
def __init__(self, json_data):
self.name = from_json(json_data, "name")
self.email = from_json(json_data, "email")
@staticmethod
def from_json(json_data, key):
""" Create an Account instance.
Return an instance of Account initialised with values from `key`
in `json_data`, or None if `json_data` does not contain `key`.
"""
if key in json_data:
return Account(json_data[key])
return None
class Change(object):
""" Gerrit change. """
def __init__(self, json_data):
self.project = from_json(json_data, "project")
self.branch = from_json(json_data, "branch")
self.topic = from_json(json_data, "topic")
self.change_id = from_json(json_data, "id")
self.number = from_json(json_data, "number")
self.subject = from_json(json_data, "subject")
self.url = from_json(json_data, "url")
self.owner = Account.from_json(json_data, "owner")
class Patchset(object):
""" Gerrit patch set. """
def __init__(self, json_data):
self.number = from_json(json_data, "number")
self.revision = from_json(json_data, "revision")
self.ref = from_json(json_data, "ref")
self.uploader = Account.from_json(json_data, "uploader")
@staticmethod
def from_json(json_data):
r""" Create a Patchset instance.
Return an instance of Patchset initialised with values from "patchSet"
in `json_data`, or None if `json_data` does not contain "patchSet".
"""
if "patchSet" in json_data:
return Patchset(json_data["patchSet"])
return None
class Approval(object):
""" Gerrit approval (verified, code review, etc). """
def __init__(self, json_data):
self.category = from_json(json_data, "type")
self.value = from_json(json_data, "value")
self.description = from_json(json_data, "description")
class RefUpdate(object):
""" Gerrit ref update. """
def __init__(self, json_data):
self.oldrev = from_json(json_data, "oldRev")
self.newrev = from_json(json_data, "newRev")
self.refname = from_json(json_data, "refName")
self.project = from_json(json_data, "project")
|