forked from python-gitlab/python-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.py
More file actions
56 lines (42 loc) · 1.65 KB
/
types.py
File metadata and controls
56 lines (42 loc) · 1.65 KB
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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2018 Gauvain Pocentek <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
class GitlabAttribute(object):
def __init__(self, value=None):
self._value = value
def get(self):
return self._value
def set_from_cli(self, cli_value):
self._value = cli_value
def get_for_api(self):
return self._value
class ListAttribute(GitlabAttribute):
def set_from_cli(self, cli_value):
if not cli_value.strip():
self._value = []
else:
self._value = [item.strip() for item in cli_value.split(",")]
def get_for_api(self):
return ",".join(self._value)
class LowercaseStringAttribute(GitlabAttribute):
def get_for_api(self):
return str(self._value).lower()
class FileAttribute(GitlabAttribute):
def get_file_name(self, attr_name=None):
return attr_name
class ImageAttribute(FileAttribute):
def get_file_name(self, attr_name=None):
return "%s.png" % attr_name if attr_name else "image.png"