oc_adm_policy_user.py 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247
  1. #!/usr/bin/env python
  2. # pylint: disable=missing-docstring
  3. # flake8: noqa: T001
  4. # ___ ___ _ _ ___ ___ _ _____ ___ ___
  5. # / __| __| \| | __| _ \ /_\_ _| __| \
  6. # | (_ | _|| .` | _|| / / _ \| | | _|| |) |
  7. # \___|___|_|\_|___|_|_\/_/_\_\_|_|___|___/_ _____
  8. # | \ / _ \ | \| |/ _ \_ _| | __| \_ _|_ _|
  9. # | |) | (_) | | .` | (_) || | | _|| |) | | | |
  10. # |___/ \___/ |_|\_|\___/ |_| |___|___/___| |_|
  11. #
  12. # Copyright 2016 Red Hat, Inc. and/or its affiliates
  13. # and other contributors as indicated by the @author tags.
  14. #
  15. # Licensed under the Apache License, Version 2.0 (the "License");
  16. # you may not use this file except in compliance with the License.
  17. # You may obtain a copy of the License at
  18. #
  19. # http://www.apache.org/licenses/LICENSE-2.0
  20. #
  21. # Unless required by applicable law or agreed to in writing, software
  22. # distributed under the License is distributed on an "AS IS" BASIS,
  23. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  24. # See the License for the specific language governing permissions and
  25. # limitations under the License.
  26. #
  27. # -*- -*- -*- Begin included fragment: lib/import.py -*- -*- -*-
  28. '''
  29. OpenShiftCLI class that wraps the oc commands in a subprocess
  30. '''
  31. # pylint: disable=too-many-lines
  32. from __future__ import print_function
  33. import atexit
  34. import copy
  35. import fcntl
  36. import json
  37. import time
  38. import os
  39. import re
  40. import shutil
  41. import subprocess
  42. import tempfile
  43. # pylint: disable=import-error
  44. try:
  45. import ruamel.yaml as yaml
  46. except ImportError:
  47. import yaml
  48. from ansible.module_utils.basic import AnsibleModule
  49. # -*- -*- -*- End included fragment: lib/import.py -*- -*- -*-
  50. # -*- -*- -*- Begin included fragment: doc/policy_user -*- -*- -*-
  51. DOCUMENTATION = '''
  52. ---
  53. module: oc_adm_policy_user
  54. short_description: Module to manage openshift policy for users
  55. description:
  56. - Manage openshift policy for users.
  57. options:
  58. kubeconfig:
  59. description:
  60. - The path for the kubeconfig file to use for authentication
  61. required: false
  62. default: /etc/origin/master/admin.kubeconfig
  63. aliases: []
  64. namespace:
  65. description:
  66. - The namespace scope
  67. required: false
  68. default: None
  69. aliases: []
  70. role_namespace:
  71. description:
  72. - The namespace where to find the role
  73. required: false
  74. default: None
  75. aliases: []
  76. debug:
  77. description:
  78. - Turn on debug output.
  79. required: false
  80. default: False
  81. aliases: []
  82. user:
  83. description:
  84. - The name of the user
  85. required: true
  86. default: None
  87. aliases: []
  88. resource_kind:
  89. description:
  90. - The kind of policy to affect
  91. required: true
  92. default: None
  93. choices: ["role", "cluster-role", "scc"]
  94. aliases: []
  95. resource_name:
  96. description:
  97. - The name of the policy
  98. required: true
  99. default: None
  100. aliases: []
  101. state:
  102. description:
  103. - Desired state of the policy
  104. required: true
  105. default: present
  106. choices: ["present", "absent"]
  107. aliases: []
  108. author:
  109. - "Kenny Woodson <kwoodson@redhat.com>"
  110. extends_documentation_fragment: []
  111. '''
  112. EXAMPLES = '''
  113. - name: oc adm policy remove-scc-from-user an-scc ausername
  114. oc_adm_policy_user:
  115. user: ausername
  116. resource_kind: scc
  117. resource_name: an-scc
  118. state: absent
  119. - name: oc adm policy add-cluster-role-to-user system:build-strategy-docker ausername
  120. oc_adm_policy_user:
  121. user: ausername
  122. resource_kind: cluster-role
  123. resource_name: system:build-strategy-docker
  124. state: present
  125. - name: oc adm policy add-role-to-user system:build-strategy-docker ausername --role-namespace foo
  126. oc_adm_policy_user:
  127. user: ausername
  128. resource_kind: cluster-role
  129. resource_name: system:build-strategy-docker
  130. state: present
  131. role_namespace: foo
  132. '''
  133. # -*- -*- -*- End included fragment: doc/policy_user -*- -*- -*-
  134. # -*- -*- -*- Begin included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  135. class YeditException(Exception): # pragma: no cover
  136. ''' Exception class for Yedit '''
  137. pass
  138. # pylint: disable=too-many-public-methods,too-many-instance-attributes
  139. class Yedit(object): # pragma: no cover
  140. ''' Class to modify yaml files '''
  141. re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$"
  142. re_key = r"(?:\[(-?\d+)\])|([0-9a-zA-Z{}/_-]+)"
  143. com_sep = set(['.', '#', '|', ':'])
  144. # pylint: disable=too-many-arguments
  145. def __init__(self,
  146. filename=None,
  147. content=None,
  148. content_type='yaml',
  149. separator='.',
  150. backup_ext=None,
  151. backup=False):
  152. self.content = content
  153. self._separator = separator
  154. self.filename = filename
  155. self.__yaml_dict = content
  156. self.content_type = content_type
  157. self.backup = backup
  158. if backup_ext is None:
  159. self.backup_ext = ".{}".format(time.strftime("%Y%m%dT%H%M%S"))
  160. else:
  161. self.backup_ext = backup_ext
  162. self.load(content_type=self.content_type)
  163. if self.__yaml_dict is None:
  164. self.__yaml_dict = {}
  165. @property
  166. def separator(self):
  167. ''' getter method for separator '''
  168. return self._separator
  169. @separator.setter
  170. def separator(self, inc_sep):
  171. ''' setter method for separator '''
  172. self._separator = inc_sep
  173. @property
  174. def yaml_dict(self):
  175. ''' getter method for yaml_dict '''
  176. return self.__yaml_dict
  177. @yaml_dict.setter
  178. def yaml_dict(self, value):
  179. ''' setter method for yaml_dict '''
  180. self.__yaml_dict = value
  181. @staticmethod
  182. def parse_key(key, sep='.'):
  183. '''parse the key allowing the appropriate separator'''
  184. common_separators = list(Yedit.com_sep - set([sep]))
  185. return re.findall(Yedit.re_key.format(''.join(common_separators)), key)
  186. @staticmethod
  187. def valid_key(key, sep='.'):
  188. '''validate the incoming key'''
  189. common_separators = list(Yedit.com_sep - set([sep]))
  190. if not re.match(Yedit.re_valid_key.format(''.join(common_separators)), key):
  191. return False
  192. return True
  193. # pylint: disable=too-many-return-statements,too-many-branches
  194. @staticmethod
  195. def remove_entry(data, key, index=None, value=None, sep='.'):
  196. ''' remove data at location key '''
  197. if key == '' and isinstance(data, dict):
  198. if value is not None:
  199. data.pop(value)
  200. elif index is not None:
  201. raise YeditException("remove_entry for a dictionary does not have an index {}".format(index))
  202. else:
  203. data.clear()
  204. return True
  205. elif key == '' and isinstance(data, list):
  206. ind = None
  207. if value is not None:
  208. try:
  209. ind = data.index(value)
  210. except ValueError:
  211. return False
  212. elif index is not None:
  213. ind = index
  214. else:
  215. del data[:]
  216. if ind is not None:
  217. data.pop(ind)
  218. return True
  219. if not (key and Yedit.valid_key(key, sep)) and \
  220. isinstance(data, (list, dict)):
  221. return None
  222. key_indexes = Yedit.parse_key(key, sep)
  223. for arr_ind, dict_key in key_indexes[:-1]:
  224. if dict_key and isinstance(data, dict):
  225. data = data.get(dict_key)
  226. elif (arr_ind and isinstance(data, list) and
  227. int(arr_ind) <= len(data) - 1):
  228. data = data[int(arr_ind)]
  229. else:
  230. return None
  231. # process last index for remove
  232. # expected list entry
  233. if key_indexes[-1][0]:
  234. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  235. del data[int(key_indexes[-1][0])]
  236. return True
  237. # expected dict entry
  238. elif key_indexes[-1][1]:
  239. if isinstance(data, dict):
  240. del data[key_indexes[-1][1]]
  241. return True
  242. @staticmethod
  243. def add_entry(data, key, item=None, sep='.'):
  244. ''' Get an item from a dictionary with key notation a.b.c
  245. d = {'a': {'b': 'c'}}}
  246. key = a#b
  247. return c
  248. '''
  249. if key == '':
  250. pass
  251. elif (not (key and Yedit.valid_key(key, sep)) and
  252. isinstance(data, (list, dict))):
  253. return None
  254. key_indexes = Yedit.parse_key(key, sep)
  255. for arr_ind, dict_key in key_indexes[:-1]:
  256. if dict_key:
  257. if isinstance(data, dict) and dict_key in data and data[dict_key]: # noqa: E501
  258. data = data[dict_key]
  259. continue
  260. elif data and not isinstance(data, dict):
  261. raise YeditException("Unexpected item type found while going through key " +
  262. "path: {} (at key: {})".format(key, dict_key))
  263. data[dict_key] = {}
  264. data = data[dict_key]
  265. elif (arr_ind and isinstance(data, list) and
  266. int(arr_ind) <= len(data) - 1):
  267. data = data[int(arr_ind)]
  268. else:
  269. raise YeditException("Unexpected item type found while going through key path: {}".format(key))
  270. if key == '':
  271. data = item
  272. # process last index for add
  273. # expected list entry
  274. elif key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  275. data[int(key_indexes[-1][0])] = item
  276. # expected dict entry
  277. elif key_indexes[-1][1] and isinstance(data, dict):
  278. data[key_indexes[-1][1]] = item
  279. # didn't add/update to an existing list, nor add/update key to a dict
  280. # so we must have been provided some syntax like a.b.c[<int>] = "data" for a
  281. # non-existent array
  282. else:
  283. raise YeditException("Error adding to object at path: {}".format(key))
  284. return data
  285. @staticmethod
  286. def get_entry(data, key, sep='.'):
  287. ''' Get an item from a dictionary with key notation a.b.c
  288. d = {'a': {'b': 'c'}}}
  289. key = a.b
  290. return c
  291. '''
  292. if key == '':
  293. pass
  294. elif (not (key and Yedit.valid_key(key, sep)) and
  295. isinstance(data, (list, dict))):
  296. return None
  297. key_indexes = Yedit.parse_key(key, sep)
  298. for arr_ind, dict_key in key_indexes:
  299. if dict_key and isinstance(data, dict):
  300. data = data.get(dict_key)
  301. elif (arr_ind and isinstance(data, list) and
  302. int(arr_ind) <= len(data) - 1):
  303. data = data[int(arr_ind)]
  304. else:
  305. return None
  306. return data
  307. @staticmethod
  308. def _write(filename, contents):
  309. ''' Actually write the file contents to disk. This helps with mocking. '''
  310. tmp_filename = filename + '.yedit'
  311. with open(tmp_filename, 'w') as yfd:
  312. fcntl.flock(yfd, fcntl.LOCK_EX | fcntl.LOCK_NB)
  313. yfd.write(contents)
  314. fcntl.flock(yfd, fcntl.LOCK_UN)
  315. os.rename(tmp_filename, filename)
  316. def write(self):
  317. ''' write to file '''
  318. if not self.filename:
  319. raise YeditException('Please specify a filename.')
  320. if self.backup and self.file_exists():
  321. shutil.copy(self.filename, '{}{}'.format(self.filename, self.backup_ext))
  322. # Try to set format attributes if supported
  323. try:
  324. self.yaml_dict.fa.set_block_style()
  325. except AttributeError:
  326. pass
  327. # Try to use RoundTripDumper if supported.
  328. if self.content_type == 'yaml':
  329. try:
  330. Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
  331. except AttributeError:
  332. Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  333. elif self.content_type == 'json':
  334. Yedit._write(self.filename, json.dumps(self.yaml_dict, indent=4, sort_keys=True))
  335. else:
  336. raise YeditException('Unsupported content_type: {}.'.format(self.content_type) +
  337. 'Please specify a content_type of yaml or json.')
  338. return (True, self.yaml_dict)
  339. def read(self):
  340. ''' read from file '''
  341. # check if it exists
  342. if self.filename is None or not self.file_exists():
  343. return None
  344. contents = None
  345. with open(self.filename) as yfd:
  346. contents = yfd.read()
  347. return contents
  348. def file_exists(self):
  349. ''' return whether file exists '''
  350. if os.path.exists(self.filename):
  351. return True
  352. return False
  353. def load(self, content_type='yaml'):
  354. ''' return yaml file '''
  355. contents = self.read()
  356. if not contents and not self.content:
  357. return None
  358. if self.content:
  359. if isinstance(self.content, dict):
  360. self.yaml_dict = self.content
  361. return self.yaml_dict
  362. elif isinstance(self.content, str):
  363. contents = self.content
  364. # check if it is yaml
  365. try:
  366. if content_type == 'yaml' and contents:
  367. # Try to set format attributes if supported
  368. try:
  369. self.yaml_dict.fa.set_block_style()
  370. except AttributeError:
  371. pass
  372. # Try to use RoundTripLoader if supported.
  373. try:
  374. self.yaml_dict = yaml.load(contents, yaml.RoundTripLoader)
  375. except AttributeError:
  376. self.yaml_dict = yaml.safe_load(contents)
  377. # Try to set format attributes if supported
  378. try:
  379. self.yaml_dict.fa.set_block_style()
  380. except AttributeError:
  381. pass
  382. elif content_type == 'json' and contents:
  383. self.yaml_dict = json.loads(contents)
  384. except yaml.YAMLError as err:
  385. # Error loading yaml or json
  386. raise YeditException('Problem with loading yaml file. {}'.format(err))
  387. return self.yaml_dict
  388. def get(self, key):
  389. ''' get a specified key'''
  390. try:
  391. entry = Yedit.get_entry(self.yaml_dict, key, self.separator)
  392. except KeyError:
  393. entry = None
  394. return entry
  395. def pop(self, path, key_or_item):
  396. ''' remove a key, value pair from a dict or an item for a list'''
  397. try:
  398. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  399. except KeyError:
  400. entry = None
  401. if entry is None:
  402. return (False, self.yaml_dict)
  403. if isinstance(entry, dict):
  404. # AUDIT:maybe-no-member makes sense due to fuzzy types
  405. # pylint: disable=maybe-no-member
  406. if key_or_item in entry:
  407. entry.pop(key_or_item)
  408. return (True, self.yaml_dict)
  409. return (False, self.yaml_dict)
  410. elif isinstance(entry, list):
  411. # AUDIT:maybe-no-member makes sense due to fuzzy types
  412. # pylint: disable=maybe-no-member
  413. ind = None
  414. try:
  415. ind = entry.index(key_or_item)
  416. except ValueError:
  417. return (False, self.yaml_dict)
  418. entry.pop(ind)
  419. return (True, self.yaml_dict)
  420. return (False, self.yaml_dict)
  421. def delete(self, path, index=None, value=None):
  422. ''' remove path from a dict'''
  423. try:
  424. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  425. except KeyError:
  426. entry = None
  427. if entry is None:
  428. return (False, self.yaml_dict)
  429. result = Yedit.remove_entry(self.yaml_dict, path, index, value, self.separator)
  430. if not result:
  431. return (False, self.yaml_dict)
  432. return (True, self.yaml_dict)
  433. def exists(self, path, value):
  434. ''' check if value exists at path'''
  435. try:
  436. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  437. except KeyError:
  438. entry = None
  439. if isinstance(entry, list):
  440. if value in entry:
  441. return True
  442. return False
  443. elif isinstance(entry, dict):
  444. if isinstance(value, dict):
  445. rval = False
  446. for key, val in value.items():
  447. if entry[key] != val:
  448. rval = False
  449. break
  450. else:
  451. rval = True
  452. return rval
  453. return value in entry
  454. return entry == value
  455. def append(self, path, value):
  456. '''append value to a list'''
  457. try:
  458. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  459. except KeyError:
  460. entry = None
  461. if entry is None:
  462. self.put(path, [])
  463. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  464. if not isinstance(entry, list):
  465. return (False, self.yaml_dict)
  466. # AUDIT:maybe-no-member makes sense due to loading data from
  467. # a serialized format.
  468. # pylint: disable=maybe-no-member
  469. entry.append(value)
  470. return (True, self.yaml_dict)
  471. # pylint: disable=too-many-arguments
  472. def update(self, path, value, index=None, curr_value=None):
  473. ''' put path, value into a dict '''
  474. try:
  475. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  476. except KeyError:
  477. entry = None
  478. if isinstance(entry, dict):
  479. # AUDIT:maybe-no-member makes sense due to fuzzy types
  480. # pylint: disable=maybe-no-member
  481. if not isinstance(value, dict):
  482. raise YeditException('Cannot replace key, value entry in dict with non-dict type. ' +
  483. 'value=[{}] type=[{}]'.format(value, type(value)))
  484. entry.update(value)
  485. return (True, self.yaml_dict)
  486. elif isinstance(entry, list):
  487. # AUDIT:maybe-no-member makes sense due to fuzzy types
  488. # pylint: disable=maybe-no-member
  489. ind = None
  490. if curr_value:
  491. try:
  492. ind = entry.index(curr_value)
  493. except ValueError:
  494. return (False, self.yaml_dict)
  495. elif index is not None:
  496. ind = index
  497. if ind is not None and entry[ind] != value:
  498. entry[ind] = value
  499. return (True, self.yaml_dict)
  500. # see if it exists in the list
  501. try:
  502. ind = entry.index(value)
  503. except ValueError:
  504. # doesn't exist, append it
  505. entry.append(value)
  506. return (True, self.yaml_dict)
  507. # already exists, return
  508. if ind is not None:
  509. return (False, self.yaml_dict)
  510. return (False, self.yaml_dict)
  511. def put(self, path, value):
  512. ''' put path, value into a dict '''
  513. try:
  514. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  515. except KeyError:
  516. entry = None
  517. if entry == value:
  518. return (False, self.yaml_dict)
  519. # deepcopy didn't work
  520. # Try to use ruamel.yaml and fallback to pyyaml
  521. try:
  522. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  523. default_flow_style=False),
  524. yaml.RoundTripLoader)
  525. except AttributeError:
  526. tmp_copy = copy.deepcopy(self.yaml_dict)
  527. # set the format attributes if available
  528. try:
  529. tmp_copy.fa.set_block_style()
  530. except AttributeError:
  531. pass
  532. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  533. if result is None:
  534. return (False, self.yaml_dict)
  535. # When path equals "" it is a special case.
  536. # "" refers to the root of the document
  537. # Only update the root path (entire document) when its a list or dict
  538. if path == '':
  539. if isinstance(result, list) or isinstance(result, dict):
  540. self.yaml_dict = result
  541. return (True, self.yaml_dict)
  542. return (False, self.yaml_dict)
  543. self.yaml_dict = tmp_copy
  544. return (True, self.yaml_dict)
  545. def create(self, path, value):
  546. ''' create a yaml file '''
  547. if not self.file_exists():
  548. # deepcopy didn't work
  549. # Try to use ruamel.yaml and fallback to pyyaml
  550. try:
  551. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  552. default_flow_style=False),
  553. yaml.RoundTripLoader)
  554. except AttributeError:
  555. tmp_copy = copy.deepcopy(self.yaml_dict)
  556. # set the format attributes if available
  557. try:
  558. tmp_copy.fa.set_block_style()
  559. except AttributeError:
  560. pass
  561. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  562. if result is not None:
  563. self.yaml_dict = tmp_copy
  564. return (True, self.yaml_dict)
  565. return (False, self.yaml_dict)
  566. @staticmethod
  567. def get_curr_value(invalue, val_type):
  568. '''return the current value'''
  569. if invalue is None:
  570. return None
  571. curr_value = invalue
  572. if val_type == 'yaml':
  573. curr_value = yaml.safe_load(str(invalue))
  574. elif val_type == 'json':
  575. curr_value = json.loads(invalue)
  576. return curr_value
  577. @staticmethod
  578. def parse_value(inc_value, vtype=''):
  579. '''determine value type passed'''
  580. true_bools = ['y', 'Y', 'yes', 'Yes', 'YES', 'true', 'True', 'TRUE',
  581. 'on', 'On', 'ON', ]
  582. false_bools = ['n', 'N', 'no', 'No', 'NO', 'false', 'False', 'FALSE',
  583. 'off', 'Off', 'OFF']
  584. # It came in as a string but you didn't specify value_type as string
  585. # we will convert to bool if it matches any of the above cases
  586. if isinstance(inc_value, str) and 'bool' in vtype:
  587. if inc_value not in true_bools and inc_value not in false_bools:
  588. raise YeditException('Not a boolean type. str=[{}] vtype=[{}]'.format(inc_value, vtype))
  589. elif isinstance(inc_value, bool) and 'str' in vtype:
  590. inc_value = str(inc_value)
  591. # There is a special case where '' will turn into None after yaml loading it so skip
  592. if isinstance(inc_value, str) and inc_value == '':
  593. pass
  594. # If vtype is not str then go ahead and attempt to yaml load it.
  595. elif isinstance(inc_value, str) and 'str' not in vtype:
  596. try:
  597. inc_value = yaml.safe_load(inc_value)
  598. except Exception:
  599. raise YeditException('Could not determine type of incoming value. ' +
  600. 'value=[{}] vtype=[{}]'.format(type(inc_value), vtype))
  601. return inc_value
  602. @staticmethod
  603. def process_edits(edits, yamlfile):
  604. '''run through a list of edits and process them one-by-one'''
  605. results = []
  606. for edit in edits:
  607. value = Yedit.parse_value(edit['value'], edit.get('value_type', ''))
  608. if edit.get('action') == 'update':
  609. # pylint: disable=line-too-long
  610. curr_value = Yedit.get_curr_value(
  611. Yedit.parse_value(edit.get('curr_value')),
  612. edit.get('curr_value_format'))
  613. rval = yamlfile.update(edit['key'],
  614. value,
  615. edit.get('index'),
  616. curr_value)
  617. elif edit.get('action') == 'append':
  618. rval = yamlfile.append(edit['key'], value)
  619. else:
  620. rval = yamlfile.put(edit['key'], value)
  621. if rval[0]:
  622. results.append({'key': edit['key'], 'edit': rval[1]})
  623. return {'changed': len(results) > 0, 'results': results}
  624. # pylint: disable=too-many-return-statements,too-many-branches
  625. @staticmethod
  626. def run_ansible(params):
  627. '''perform the idempotent crud operations'''
  628. yamlfile = Yedit(filename=params['src'],
  629. backup=params['backup'],
  630. content_type=params['content_type'],
  631. backup_ext=params['backup_ext'],
  632. separator=params['separator'])
  633. state = params['state']
  634. if params['src']:
  635. rval = yamlfile.load()
  636. if yamlfile.yaml_dict is None and state != 'present':
  637. return {'failed': True,
  638. 'msg': 'Error opening file [{}]. Verify that the '.format(params['src']) +
  639. 'file exists, that it is has correct permissions, and is valid yaml.'}
  640. if state == 'list':
  641. if params['content']:
  642. content = Yedit.parse_value(params['content'], params['content_type'])
  643. yamlfile.yaml_dict = content
  644. if params['key']:
  645. rval = yamlfile.get(params['key'])
  646. return {'changed': False, 'result': rval, 'state': state}
  647. elif state == 'absent':
  648. if params['content']:
  649. content = Yedit.parse_value(params['content'], params['content_type'])
  650. yamlfile.yaml_dict = content
  651. if params['update']:
  652. rval = yamlfile.pop(params['key'], params['value'])
  653. else:
  654. rval = yamlfile.delete(params['key'], params['index'], params['value'])
  655. if rval[0] and params['src']:
  656. yamlfile.write()
  657. return {'changed': rval[0], 'result': rval[1], 'state': state}
  658. elif state == 'present':
  659. # check if content is different than what is in the file
  660. if params['content']:
  661. content = Yedit.parse_value(params['content'], params['content_type'])
  662. # We had no edits to make and the contents are the same
  663. if yamlfile.yaml_dict == content and \
  664. params['value'] is None:
  665. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  666. yamlfile.yaml_dict = content
  667. # If we were passed a key, value then
  668. # we enapsulate it in a list and process it
  669. # Key, Value passed to the module : Converted to Edits list #
  670. edits = []
  671. _edit = {}
  672. if params['value'] is not None:
  673. _edit['value'] = params['value']
  674. _edit['value_type'] = params['value_type']
  675. _edit['key'] = params['key']
  676. if params['update']:
  677. _edit['action'] = 'update'
  678. _edit['curr_value'] = params['curr_value']
  679. _edit['curr_value_format'] = params['curr_value_format']
  680. _edit['index'] = params['index']
  681. elif params['append']:
  682. _edit['action'] = 'append'
  683. edits.append(_edit)
  684. elif params['edits'] is not None:
  685. edits = params['edits']
  686. if edits:
  687. results = Yedit.process_edits(edits, yamlfile)
  688. # if there were changes and a src provided to us we need to write
  689. if results['changed'] and params['src']:
  690. yamlfile.write()
  691. return {'changed': results['changed'], 'result': results['results'], 'state': state}
  692. # no edits to make
  693. if params['src']:
  694. # pylint: disable=redefined-variable-type
  695. rval = yamlfile.write()
  696. return {'changed': rval[0],
  697. 'result': rval[1],
  698. 'state': state}
  699. # We were passed content but no src, key or value, or edits. Return contents in memory
  700. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  701. return {'failed': True, 'msg': 'Unkown state passed'}
  702. # -*- -*- -*- End included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  703. # -*- -*- -*- Begin included fragment: lib/base.py -*- -*- -*-
  704. # pylint: disable=too-many-lines
  705. # noqa: E301,E302,E303,T001
  706. class OpenShiftCLIError(Exception):
  707. '''Exception class for openshiftcli'''
  708. pass
  709. ADDITIONAL_PATH_LOOKUPS = ['/usr/local/bin', os.path.expanduser('~/bin')]
  710. def locate_oc_binary():
  711. ''' Find and return oc binary file '''
  712. # https://github.com/openshift/openshift-ansible/issues/3410
  713. # oc can be in /usr/local/bin in some cases, but that may not
  714. # be in $PATH due to ansible/sudo
  715. paths = os.environ.get("PATH", os.defpath).split(os.pathsep) + ADDITIONAL_PATH_LOOKUPS
  716. oc_binary = 'oc'
  717. # Use shutil.which if it is available, otherwise fallback to a naive path search
  718. try:
  719. which_result = shutil.which(oc_binary, path=os.pathsep.join(paths))
  720. if which_result is not None:
  721. oc_binary = which_result
  722. except AttributeError:
  723. for path in paths:
  724. if os.path.exists(os.path.join(path, oc_binary)):
  725. oc_binary = os.path.join(path, oc_binary)
  726. break
  727. return oc_binary
  728. # pylint: disable=too-few-public-methods
  729. class OpenShiftCLI(object):
  730. ''' Class to wrap the command line tools '''
  731. def __init__(self,
  732. namespace,
  733. kubeconfig='/etc/origin/master/admin.kubeconfig',
  734. verbose=False,
  735. all_namespaces=False):
  736. ''' Constructor for OpenshiftCLI '''
  737. self.namespace = namespace
  738. self.verbose = verbose
  739. self.kubeconfig = Utils.create_tmpfile_copy(kubeconfig)
  740. self.all_namespaces = all_namespaces
  741. self.oc_binary = locate_oc_binary()
  742. # Pylint allows only 5 arguments to be passed.
  743. # pylint: disable=too-many-arguments
  744. def _replace_content(self, resource, rname, content, edits=None, force=False, sep='.'):
  745. ''' replace the current object with the content '''
  746. res = self._get(resource, rname)
  747. if not res['results']:
  748. return res
  749. fname = Utils.create_tmpfile(rname + '-')
  750. yed = Yedit(fname, res['results'][0], separator=sep)
  751. updated = False
  752. if content is not None:
  753. changes = []
  754. for key, value in content.items():
  755. changes.append(yed.put(key, value))
  756. if any([change[0] for change in changes]):
  757. updated = True
  758. elif edits is not None:
  759. results = Yedit.process_edits(edits, yed)
  760. if results['changed']:
  761. updated = True
  762. if updated:
  763. yed.write()
  764. atexit.register(Utils.cleanup, [fname])
  765. return self._replace(fname, force)
  766. return {'returncode': 0, 'updated': False}
  767. def _replace(self, fname, force=False):
  768. '''replace the current object with oc replace'''
  769. # We are removing the 'resourceVersion' to handle
  770. # a race condition when modifying oc objects
  771. yed = Yedit(fname)
  772. results = yed.delete('metadata.resourceVersion')
  773. if results[0]:
  774. yed.write()
  775. cmd = ['replace', '-f', fname]
  776. if force:
  777. cmd.append('--force')
  778. return self.openshift_cmd(cmd)
  779. def _create_from_content(self, rname, content):
  780. '''create a temporary file and then call oc create on it'''
  781. fname = Utils.create_tmpfile(rname + '-')
  782. yed = Yedit(fname, content=content)
  783. yed.write()
  784. atexit.register(Utils.cleanup, [fname])
  785. return self._create(fname)
  786. def _create(self, fname):
  787. '''call oc create on a filename'''
  788. return self.openshift_cmd(['create', '-f', fname])
  789. def _delete(self, resource, name=None, selector=None):
  790. '''call oc delete on a resource'''
  791. cmd = ['delete', resource]
  792. if selector is not None:
  793. cmd.append('--selector={}'.format(selector))
  794. elif name is not None:
  795. cmd.append(name)
  796. else:
  797. raise OpenShiftCLIError('Either name or selector is required when calling delete.')
  798. return self.openshift_cmd(cmd)
  799. def _process(self, template_name, create=False, params=None, template_data=None): # noqa: E501
  800. '''process a template
  801. template_name: the name of the template to process
  802. create: whether to send to oc create after processing
  803. params: the parameters for the template
  804. template_data: the incoming template's data; instead of a file
  805. '''
  806. cmd = ['process']
  807. if template_data:
  808. cmd.extend(['-f', '-'])
  809. else:
  810. cmd.append(template_name)
  811. if params:
  812. param_str = ["{}={}".format(key, str(value).replace("'", r'"')) for key, value in params.items()]
  813. cmd.append('-p')
  814. cmd.extend(param_str)
  815. results = self.openshift_cmd(cmd, output=True, input_data=template_data)
  816. if results['returncode'] != 0 or not create:
  817. return results
  818. fname = Utils.create_tmpfile(template_name + '-')
  819. yed = Yedit(fname, results['results'])
  820. yed.write()
  821. atexit.register(Utils.cleanup, [fname])
  822. return self.openshift_cmd(['create', '-f', fname])
  823. def _get(self, resource, name=None, selector=None, field_selector=None):
  824. '''return a resource by name '''
  825. cmd = ['get', resource]
  826. if selector is not None:
  827. cmd.append('--selector={}'.format(selector))
  828. if field_selector is not None:
  829. cmd.append('--field-selector={}'.format(field_selector))
  830. # Name cannot be used with selector or field_selector.
  831. if selector is None and field_selector is None and name is not None:
  832. cmd.append(name)
  833. cmd.extend(['-o', 'json'])
  834. rval = self.openshift_cmd(cmd, output=True)
  835. # Ensure results are retuned in an array
  836. if 'items' in rval:
  837. rval['results'] = rval['items']
  838. elif not isinstance(rval['results'], list):
  839. rval['results'] = [rval['results']]
  840. return rval
  841. def _schedulable(self, node=None, selector=None, schedulable=True):
  842. ''' perform oadm manage-node scheduable '''
  843. cmd = ['manage-node']
  844. if node:
  845. cmd.extend(node)
  846. else:
  847. cmd.append('--selector={}'.format(selector))
  848. cmd.append('--schedulable={}'.format(schedulable))
  849. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  850. def _list_pods(self, node=None, selector=None, pod_selector=None):
  851. ''' perform oadm list pods
  852. node: the node in which to list pods
  853. selector: the label selector filter if provided
  854. pod_selector: the pod selector filter if provided
  855. '''
  856. cmd = ['manage-node']
  857. if node:
  858. cmd.extend(node)
  859. else:
  860. cmd.append('--selector={}'.format(selector))
  861. if pod_selector:
  862. cmd.append('--pod-selector={}'.format(pod_selector))
  863. cmd.extend(['--list-pods', '-o', 'json'])
  864. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  865. # pylint: disable=too-many-arguments
  866. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  867. ''' perform oadm manage-node evacuate '''
  868. cmd = ['manage-node']
  869. if node:
  870. cmd.extend(node)
  871. else:
  872. cmd.append('--selector={}'.format(selector))
  873. if dry_run:
  874. cmd.append('--dry-run')
  875. if pod_selector:
  876. cmd.append('--pod-selector={}'.format(pod_selector))
  877. if grace_period:
  878. cmd.append('--grace-period={}'.format(int(grace_period)))
  879. if force:
  880. cmd.append('--force')
  881. cmd.append('--evacuate')
  882. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  883. def _version(self):
  884. ''' return the openshift version'''
  885. return self.openshift_cmd(['version'], output=True, output_type='raw')
  886. def _import_image(self, url=None, name=None, tag=None):
  887. ''' perform image import '''
  888. cmd = ['import-image']
  889. image = '{0}'.format(name)
  890. if tag:
  891. image += ':{0}'.format(tag)
  892. cmd.append(image)
  893. if url:
  894. cmd.append('--from={0}/{1}'.format(url, image))
  895. cmd.append('-n{0}'.format(self.namespace))
  896. cmd.append('--confirm')
  897. return self.openshift_cmd(cmd)
  898. def _run(self, cmds, input_data):
  899. ''' Actually executes the command. This makes mocking easier. '''
  900. curr_env = os.environ.copy()
  901. curr_env.update({'KUBECONFIG': self.kubeconfig})
  902. proc = subprocess.Popen(cmds,
  903. stdin=subprocess.PIPE,
  904. stdout=subprocess.PIPE,
  905. stderr=subprocess.PIPE,
  906. env=curr_env)
  907. stdout, stderr = proc.communicate(input_data)
  908. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  909. # pylint: disable=too-many-arguments,too-many-branches
  910. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  911. '''Base command for oc '''
  912. cmds = [self.oc_binary]
  913. if oadm:
  914. cmds.append('adm')
  915. cmds.extend(cmd)
  916. if self.all_namespaces:
  917. cmds.extend(['--all-namespaces'])
  918. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  919. cmds.extend(['-n', self.namespace])
  920. if self.verbose:
  921. print(' '.join(cmds))
  922. try:
  923. returncode, stdout, stderr = self._run(cmds, input_data)
  924. except OSError as ex:
  925. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  926. rval = {"returncode": returncode,
  927. "cmd": ' '.join(cmds)}
  928. if output_type == 'json':
  929. rval['results'] = {}
  930. if output and stdout:
  931. try:
  932. rval['results'] = json.loads(stdout)
  933. except ValueError as verr:
  934. if "No JSON object could be decoded" in verr.args:
  935. rval['err'] = verr.args
  936. elif output_type == 'raw':
  937. rval['results'] = stdout if output else ''
  938. if self.verbose:
  939. print("STDOUT: {0}".format(stdout))
  940. print("STDERR: {0}".format(stderr))
  941. if 'err' in rval or returncode != 0:
  942. rval.update({"stderr": stderr,
  943. "stdout": stdout})
  944. return rval
  945. class Utils(object): # pragma: no cover
  946. ''' utilities for openshiftcli modules '''
  947. @staticmethod
  948. def _write(filename, contents):
  949. ''' Actually write the file contents to disk. This helps with mocking. '''
  950. with open(filename, 'w') as sfd:
  951. sfd.write(str(contents))
  952. @staticmethod
  953. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  954. ''' create a file in tmp with name and contents'''
  955. tmp = Utils.create_tmpfile(prefix=rname)
  956. if ftype == 'yaml':
  957. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  958. # pylint: disable=no-member
  959. if hasattr(yaml, 'RoundTripDumper'):
  960. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  961. else:
  962. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  963. elif ftype == 'json':
  964. Utils._write(tmp, json.dumps(data))
  965. else:
  966. Utils._write(tmp, data)
  967. # Register cleanup when module is done
  968. atexit.register(Utils.cleanup, [tmp])
  969. return tmp
  970. @staticmethod
  971. def create_tmpfile_copy(inc_file):
  972. '''create a temporary copy of a file'''
  973. tmpfile = Utils.create_tmpfile('lib_openshift-')
  974. Utils._write(tmpfile, open(inc_file).read())
  975. # Cleanup the tmpfile
  976. atexit.register(Utils.cleanup, [tmpfile])
  977. return tmpfile
  978. @staticmethod
  979. def create_tmpfile(prefix='tmp'):
  980. ''' Generates and returns a temporary file name '''
  981. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  982. return tmp.name
  983. @staticmethod
  984. def create_tmp_files_from_contents(content, content_type=None):
  985. '''Turn an array of dict: filename, content into a files array'''
  986. if not isinstance(content, list):
  987. content = [content]
  988. files = []
  989. for item in content:
  990. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  991. item['data'],
  992. ftype=content_type)
  993. files.append({'name': os.path.basename(item['path']),
  994. 'path': path})
  995. return files
  996. @staticmethod
  997. def cleanup(files):
  998. '''Clean up on exit '''
  999. for sfile in files:
  1000. if os.path.exists(sfile):
  1001. if os.path.isdir(sfile):
  1002. shutil.rmtree(sfile)
  1003. elif os.path.isfile(sfile):
  1004. os.remove(sfile)
  1005. @staticmethod
  1006. def exists(results, _name):
  1007. ''' Check to see if the results include the name '''
  1008. if not results:
  1009. return False
  1010. if Utils.find_result(results, _name):
  1011. return True
  1012. return False
  1013. @staticmethod
  1014. def find_result(results, _name):
  1015. ''' Find the specified result by name'''
  1016. rval = None
  1017. for result in results:
  1018. if 'metadata' in result and result['metadata']['name'] == _name:
  1019. rval = result
  1020. break
  1021. return rval
  1022. @staticmethod
  1023. def get_resource_file(sfile, sfile_type='yaml'):
  1024. ''' return the service file '''
  1025. contents = None
  1026. with open(sfile) as sfd:
  1027. contents = sfd.read()
  1028. if sfile_type == 'yaml':
  1029. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1030. # pylint: disable=no-member
  1031. if hasattr(yaml, 'RoundTripLoader'):
  1032. contents = yaml.load(contents, yaml.RoundTripLoader)
  1033. else:
  1034. contents = yaml.safe_load(contents)
  1035. elif sfile_type == 'json':
  1036. contents = json.loads(contents)
  1037. return contents
  1038. @staticmethod
  1039. def filter_versions(stdout):
  1040. ''' filter the oc version output '''
  1041. version_dict = {}
  1042. version_search = ['oc', 'openshift', 'kubernetes']
  1043. for line in stdout.strip().split('\n'):
  1044. for term in version_search:
  1045. if not line:
  1046. continue
  1047. if line.startswith(term):
  1048. version_dict[term] = line.split()[-1]
  1049. # horrible hack to get openshift version in Openshift 3.2
  1050. # By default "oc version in 3.2 does not return an "openshift" version
  1051. if "openshift" not in version_dict:
  1052. version_dict["openshift"] = version_dict["oc"]
  1053. return version_dict
  1054. @staticmethod
  1055. def add_custom_versions(versions):
  1056. ''' create custom versions strings '''
  1057. versions_dict = {}
  1058. for tech, version in versions.items():
  1059. # clean up "-" from version
  1060. if "-" in version:
  1061. version = version.split("-")[0]
  1062. if version.startswith('v'):
  1063. version = version[1:] # Remove the 'v' prefix
  1064. versions_dict[tech + '_numeric'] = version.split('+')[0]
  1065. # "3.3.0.33" is what we have, we want "3.3"
  1066. versions_dict[tech + '_short'] = "{}.{}".format(*version.split('.'))
  1067. return versions_dict
  1068. @staticmethod
  1069. def openshift_installed():
  1070. ''' check if openshift is installed '''
  1071. import rpm
  1072. transaction_set = rpm.TransactionSet()
  1073. rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
  1074. return rpmquery.count() > 0
  1075. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1076. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1077. @staticmethod
  1078. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1079. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1080. # Currently these values are autogenerated and we do not need to check them
  1081. skip = ['metadata', 'status']
  1082. if skip_keys:
  1083. skip.extend(skip_keys)
  1084. for key, value in result_def.items():
  1085. if key in skip:
  1086. continue
  1087. # Both are lists
  1088. if isinstance(value, list):
  1089. if key not in user_def:
  1090. if debug:
  1091. print('User data does not have key [%s]' % key)
  1092. print('User data: %s' % user_def)
  1093. return False
  1094. if not isinstance(user_def[key], list):
  1095. if debug:
  1096. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1097. return False
  1098. if len(user_def[key]) != len(value):
  1099. if debug:
  1100. print("List lengths are not equal.")
  1101. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1102. print("user_def: %s" % user_def[key])
  1103. print("value: %s" % value)
  1104. return False
  1105. for values in zip(user_def[key], value):
  1106. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1107. if debug:
  1108. print('sending list - list')
  1109. print(type(values[0]))
  1110. print(type(values[1]))
  1111. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1112. if not result:
  1113. print('list compare returned false')
  1114. return False
  1115. elif value != user_def[key]:
  1116. if debug:
  1117. print('value should be identical')
  1118. print(user_def[key])
  1119. print(value)
  1120. return False
  1121. # recurse on a dictionary
  1122. elif isinstance(value, dict):
  1123. if key not in user_def:
  1124. if debug:
  1125. print("user_def does not have key [%s]" % key)
  1126. return False
  1127. if not isinstance(user_def[key], dict):
  1128. if debug:
  1129. print("dict returned false: not instance of dict")
  1130. return False
  1131. # before passing ensure keys match
  1132. api_values = set(value.keys()) - set(skip)
  1133. user_values = set(user_def[key].keys()) - set(skip)
  1134. if api_values != user_values:
  1135. if debug:
  1136. print("keys are not equal in dict")
  1137. print(user_values)
  1138. print(api_values)
  1139. return False
  1140. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1141. if not result:
  1142. if debug:
  1143. print("dict returned false")
  1144. print(result)
  1145. return False
  1146. # Verify each key, value pair is the same
  1147. else:
  1148. if key not in user_def or value != user_def[key]:
  1149. if debug:
  1150. print("value not equal; user_def does not have key")
  1151. print(key)
  1152. print(value)
  1153. if key in user_def:
  1154. print(user_def[key])
  1155. return False
  1156. if debug:
  1157. print('returning true')
  1158. return True
  1159. class OpenShiftCLIConfig(object):
  1160. '''Generic Config'''
  1161. def __init__(self, rname, namespace, kubeconfig, options):
  1162. self.kubeconfig = kubeconfig
  1163. self.name = rname
  1164. self.namespace = namespace
  1165. self._options = options
  1166. @property
  1167. def config_options(self):
  1168. ''' return config options '''
  1169. return self._options
  1170. def to_option_list(self, ascommalist=''):
  1171. '''return all options as a string
  1172. if ascommalist is set to the name of a key, and
  1173. the value of that key is a dict, format the dict
  1174. as a list of comma delimited key=value pairs'''
  1175. return self.stringify(ascommalist)
  1176. def stringify(self, ascommalist=''):
  1177. ''' return the options hash as cli params in a string
  1178. if ascommalist is set to the name of a key, and
  1179. the value of that key is a dict, format the dict
  1180. as a list of comma delimited key=value pairs '''
  1181. rval = []
  1182. for key in sorted(self.config_options.keys()):
  1183. data = self.config_options[key]
  1184. if data['include'] \
  1185. and (data['value'] is not None or isinstance(data['value'], int)):
  1186. if key == ascommalist:
  1187. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1188. else:
  1189. val = data['value']
  1190. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1191. return rval
  1192. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1193. # -*- -*- -*- Begin included fragment: lib/rolebinding.py -*- -*- -*-
  1194. # pylint: disable=too-many-instance-attributes
  1195. class RoleBindingConfig(object):
  1196. ''' Handle rolebinding config '''
  1197. # pylint: disable=too-many-arguments
  1198. def __init__(self,
  1199. name,
  1200. namespace,
  1201. kubeconfig,
  1202. group_names=None,
  1203. role_ref=None,
  1204. subjects=None,
  1205. usernames=None):
  1206. ''' constructor for handling rolebinding options '''
  1207. self.kubeconfig = kubeconfig
  1208. self.name = name
  1209. self.namespace = namespace
  1210. self.group_names = group_names
  1211. self.role_ref = role_ref
  1212. self.subjects = subjects
  1213. self.usernames = usernames
  1214. self.data = {}
  1215. self.create_dict()
  1216. def create_dict(self):
  1217. ''' create a default rolebinding as a dict '''
  1218. self.data['apiVersion'] = 'v1'
  1219. self.data['kind'] = 'RoleBinding'
  1220. self.data['groupNames'] = self.group_names
  1221. self.data['metadata']['name'] = self.name
  1222. self.data['metadata']['namespace'] = self.namespace
  1223. self.data['roleRef'] = self.role_ref
  1224. self.data['subjects'] = self.subjects
  1225. self.data['userNames'] = self.usernames
  1226. # pylint: disable=too-many-instance-attributes,too-many-public-methods
  1227. class RoleBinding(Yedit):
  1228. ''' Class to model a rolebinding openshift object'''
  1229. group_names_path = "groupNames"
  1230. role_ref_path = "roleRef"
  1231. subjects_path = "subjects"
  1232. user_names_path = "userNames"
  1233. kind = 'RoleBinding'
  1234. def __init__(self, content):
  1235. '''RoleBinding constructor'''
  1236. super(RoleBinding, self).__init__(content=content)
  1237. self._subjects = None
  1238. self._role_ref = None
  1239. self._group_names = None
  1240. self._user_names = None
  1241. @property
  1242. def subjects(self):
  1243. ''' subjects property '''
  1244. if self._subjects is None:
  1245. self._subjects = self.get_subjects()
  1246. return self._subjects
  1247. @subjects.setter
  1248. def subjects(self, data):
  1249. ''' subjects property setter'''
  1250. self._subjects = data
  1251. @property
  1252. def role_ref(self):
  1253. ''' role_ref property '''
  1254. if self._role_ref is None:
  1255. self._role_ref = self.get_role_ref()
  1256. return self._role_ref
  1257. @role_ref.setter
  1258. def role_ref(self, data):
  1259. ''' role_ref property setter'''
  1260. self._role_ref = data
  1261. @property
  1262. def group_names(self):
  1263. ''' group_names property '''
  1264. if self._group_names is None:
  1265. self._group_names = self.get_group_names()
  1266. return self._group_names
  1267. @group_names.setter
  1268. def group_names(self, data):
  1269. ''' group_names property setter'''
  1270. self._group_names = data
  1271. @property
  1272. def user_names(self):
  1273. ''' user_names property '''
  1274. if self._user_names is None:
  1275. self._user_names = self.get_user_names()
  1276. return self._user_names
  1277. @user_names.setter
  1278. def user_names(self, data):
  1279. ''' user_names property setter'''
  1280. self._user_names = data
  1281. def get_group_names(self):
  1282. ''' return groupNames '''
  1283. return self.get(RoleBinding.group_names_path) or []
  1284. def get_user_names(self):
  1285. ''' return usernames '''
  1286. return self.get(RoleBinding.user_names_path) or []
  1287. def get_role_ref(self):
  1288. ''' return role_ref '''
  1289. return self.get(RoleBinding.role_ref_path) or {}
  1290. def get_subjects(self):
  1291. ''' return subjects '''
  1292. return self.get(RoleBinding.subjects_path) or []
  1293. #### ADD #####
  1294. def add_subject(self, inc_subject):
  1295. ''' add a subject '''
  1296. if self.subjects:
  1297. # pylint: disable=no-member
  1298. self.subjects.append(inc_subject)
  1299. else:
  1300. self.put(RoleBinding.subjects_path, [inc_subject])
  1301. return True
  1302. def add_role_ref(self, inc_role_ref):
  1303. ''' add a role_ref '''
  1304. if not self.role_ref:
  1305. self.put(RoleBinding.role_ref_path, {"name": inc_role_ref})
  1306. return True
  1307. return False
  1308. def add_group_names(self, inc_group_names):
  1309. ''' add a group_names '''
  1310. if self.group_names:
  1311. # pylint: disable=no-member
  1312. self.group_names.append(inc_group_names)
  1313. else:
  1314. self.put(RoleBinding.group_names_path, [inc_group_names])
  1315. return True
  1316. def add_user_name(self, inc_user_name):
  1317. ''' add a username '''
  1318. if self.user_names:
  1319. # pylint: disable=no-member
  1320. self.user_names.append(inc_user_name)
  1321. else:
  1322. self.put(RoleBinding.user_names_path, [inc_user_name])
  1323. return True
  1324. #### /ADD #####
  1325. #### Remove #####
  1326. def remove_subject(self, inc_subject):
  1327. ''' remove a subject '''
  1328. try:
  1329. # pylint: disable=no-member
  1330. self.subjects.remove(inc_subject)
  1331. except ValueError as _:
  1332. return False
  1333. return True
  1334. def remove_role_ref(self, inc_role_ref):
  1335. ''' remove a role_ref '''
  1336. if self.role_ref and self.role_ref['name'] == inc_role_ref:
  1337. del self.role_ref['name']
  1338. return True
  1339. return False
  1340. def remove_group_name(self, inc_group_name):
  1341. ''' remove a groupname '''
  1342. try:
  1343. # pylint: disable=no-member
  1344. self.group_names.remove(inc_group_name)
  1345. except ValueError as _:
  1346. return False
  1347. return True
  1348. def remove_user_name(self, inc_user_name):
  1349. ''' remove a username '''
  1350. try:
  1351. # pylint: disable=no-member
  1352. self.user_names.remove(inc_user_name)
  1353. except ValueError as _:
  1354. return False
  1355. return True
  1356. #### /REMOVE #####
  1357. #### UPDATE #####
  1358. def update_subject(self, inc_subject):
  1359. ''' update a subject '''
  1360. try:
  1361. # pylint: disable=no-member
  1362. index = self.subjects.index(inc_subject)
  1363. except ValueError as _:
  1364. return self.add_subject(inc_subject)
  1365. self.subjects[index] = inc_subject
  1366. return True
  1367. def update_group_name(self, inc_group_name):
  1368. ''' update a groupname '''
  1369. try:
  1370. # pylint: disable=no-member
  1371. index = self.group_names.index(inc_group_name)
  1372. except ValueError as _:
  1373. return self.add_group_names(inc_group_name)
  1374. self.group_names[index] = inc_group_name
  1375. return True
  1376. def update_user_name(self, inc_user_name):
  1377. ''' update a username '''
  1378. try:
  1379. # pylint: disable=no-member
  1380. index = self.user_names.index(inc_user_name)
  1381. except ValueError as _:
  1382. return self.add_user_name(inc_user_name)
  1383. self.user_names[index] = inc_user_name
  1384. return True
  1385. def update_role_ref(self, inc_role_ref):
  1386. ''' update a role_ref '''
  1387. self.role_ref['name'] = inc_role_ref
  1388. return True
  1389. #### /UPDATE #####
  1390. #### FIND ####
  1391. def find_subject(self, inc_subject):
  1392. ''' find a subject '''
  1393. index = None
  1394. try:
  1395. # pylint: disable=no-member
  1396. index = self.subjects.index(inc_subject)
  1397. except ValueError as _:
  1398. return index
  1399. return index
  1400. def find_group_name(self, inc_group_name):
  1401. ''' find a group_name '''
  1402. index = None
  1403. try:
  1404. # pylint: disable=no-member
  1405. index = self.group_names.index(inc_group_name)
  1406. except ValueError as _:
  1407. return index
  1408. return index
  1409. def find_user_name(self, inc_user_name):
  1410. ''' find a user_name '''
  1411. index = None
  1412. try:
  1413. # pylint: disable=no-member
  1414. index = self.user_names.index(inc_user_name)
  1415. except ValueError as _:
  1416. return index
  1417. return index
  1418. def find_role_ref(self, inc_role_ref):
  1419. ''' find a user_name '''
  1420. if self.role_ref and self.role_ref['name'] == inc_role_ref['name']:
  1421. return self.role_ref
  1422. return None
  1423. # -*- -*- -*- End included fragment: lib/rolebinding.py -*- -*- -*-
  1424. # -*- -*- -*- Begin included fragment: lib/scc.py -*- -*- -*-
  1425. # pylint: disable=too-many-instance-attributes
  1426. class SecurityContextConstraintsConfig(object):
  1427. ''' Handle scc options '''
  1428. # pylint: disable=too-many-arguments
  1429. def __init__(self,
  1430. sname,
  1431. kubeconfig,
  1432. options=None,
  1433. fs_group='MustRunAs',
  1434. default_add_capabilities=None,
  1435. groups=None,
  1436. priority=None,
  1437. required_drop_capabilities=None,
  1438. run_as_user='MustRunAsRange',
  1439. se_linux_context='MustRunAs',
  1440. supplemental_groups='RunAsAny',
  1441. users=None,
  1442. annotations=None):
  1443. ''' constructor for handling scc options '''
  1444. self.kubeconfig = kubeconfig
  1445. self.name = sname
  1446. self.options = options
  1447. self.fs_group = fs_group
  1448. self.default_add_capabilities = default_add_capabilities
  1449. self.groups = groups
  1450. self.priority = priority
  1451. self.required_drop_capabilities = required_drop_capabilities
  1452. self.run_as_user = run_as_user
  1453. self.se_linux_context = se_linux_context
  1454. self.supplemental_groups = supplemental_groups
  1455. self.users = users
  1456. self.annotations = annotations
  1457. self.data = {}
  1458. self.create_dict()
  1459. def create_dict(self):
  1460. ''' assign the correct properties for a scc dict '''
  1461. # allow options
  1462. if self.options:
  1463. for key, value in self.options.items():
  1464. self.data[key] = value
  1465. else:
  1466. self.data['allowHostDirVolumePlugin'] = False
  1467. self.data['allowHostIPC'] = False
  1468. self.data['allowHostNetwork'] = False
  1469. self.data['allowHostPID'] = False
  1470. self.data['allowHostPorts'] = False
  1471. self.data['allowPrivilegedContainer'] = False
  1472. self.data['allowedCapabilities'] = None
  1473. # version
  1474. self.data['apiVersion'] = 'v1'
  1475. # kind
  1476. self.data['kind'] = 'SecurityContextConstraints'
  1477. # defaultAddCapabilities
  1478. self.data['defaultAddCapabilities'] = self.default_add_capabilities
  1479. # fsGroup
  1480. self.data['fsGroup']['type'] = self.fs_group
  1481. # groups
  1482. self.data['groups'] = []
  1483. if self.groups:
  1484. self.data['groups'] = self.groups
  1485. # metadata
  1486. self.data['metadata'] = {}
  1487. self.data['metadata']['name'] = self.name
  1488. if self.annotations:
  1489. for key, value in self.annotations.items():
  1490. self.data['metadata'][key] = value
  1491. # priority
  1492. self.data['priority'] = self.priority
  1493. # requiredDropCapabilities
  1494. self.data['requiredDropCapabilities'] = self.required_drop_capabilities
  1495. # runAsUser
  1496. self.data['runAsUser'] = {'type': self.run_as_user}
  1497. # seLinuxContext
  1498. self.data['seLinuxContext'] = {'type': self.se_linux_context}
  1499. # supplementalGroups
  1500. self.data['supplementalGroups'] = {'type': self.supplemental_groups}
  1501. # users
  1502. self.data['users'] = []
  1503. if self.users:
  1504. self.data['users'] = self.users
  1505. # pylint: disable=too-many-instance-attributes,too-many-public-methods,no-member
  1506. class SecurityContextConstraints(Yedit):
  1507. ''' Class to wrap the oc command line tools '''
  1508. default_add_capabilities_path = "defaultAddCapabilities"
  1509. fs_group_path = "fsGroup"
  1510. groups_path = "groups"
  1511. priority_path = "priority"
  1512. required_drop_capabilities_path = "requiredDropCapabilities"
  1513. run_as_user_path = "runAsUser"
  1514. se_linux_context_path = "seLinuxContext"
  1515. supplemental_groups_path = "supplementalGroups"
  1516. users_path = "users"
  1517. kind = 'SecurityContextConstraints'
  1518. def __init__(self, content):
  1519. '''SecurityContextConstraints constructor'''
  1520. super(SecurityContextConstraints, self).__init__(content=content)
  1521. self._users = None
  1522. self._groups = None
  1523. @property
  1524. def users(self):
  1525. ''' users property getter '''
  1526. if self._users is None:
  1527. self._users = self.get_users()
  1528. return self._users
  1529. @property
  1530. def groups(self):
  1531. ''' groups property getter '''
  1532. if self._groups is None:
  1533. self._groups = self.get_groups()
  1534. return self._groups
  1535. @users.setter
  1536. def users(self, data):
  1537. ''' users property setter'''
  1538. self._users = data
  1539. @groups.setter
  1540. def groups(self, data):
  1541. ''' groups property setter'''
  1542. self._groups = data
  1543. def get_users(self):
  1544. '''get scc users'''
  1545. return self.get(SecurityContextConstraints.users_path) or []
  1546. def get_groups(self):
  1547. '''get scc groups'''
  1548. return self.get(SecurityContextConstraints.groups_path) or []
  1549. def add_user(self, inc_user):
  1550. ''' add a user '''
  1551. if self.users:
  1552. self.users.append(inc_user)
  1553. else:
  1554. self.put(SecurityContextConstraints.users_path, [inc_user])
  1555. return True
  1556. def add_group(self, inc_group):
  1557. ''' add a group '''
  1558. if self.groups:
  1559. self.groups.append(inc_group)
  1560. else:
  1561. self.put(SecurityContextConstraints.groups_path, [inc_group])
  1562. return True
  1563. def remove_user(self, inc_user):
  1564. ''' remove a user '''
  1565. try:
  1566. self.users.remove(inc_user)
  1567. except ValueError as _:
  1568. return False
  1569. return True
  1570. def remove_group(self, inc_group):
  1571. ''' remove a group '''
  1572. try:
  1573. self.groups.remove(inc_group)
  1574. except ValueError as _:
  1575. return False
  1576. return True
  1577. def update_user(self, inc_user):
  1578. ''' update a user '''
  1579. try:
  1580. index = self.users.index(inc_user)
  1581. except ValueError as _:
  1582. return self.add_user(inc_user)
  1583. self.users[index] = inc_user
  1584. return True
  1585. def update_group(self, inc_group):
  1586. ''' update a group '''
  1587. try:
  1588. index = self.groups.index(inc_group)
  1589. except ValueError as _:
  1590. return self.add_group(inc_group)
  1591. self.groups[index] = inc_group
  1592. return True
  1593. def find_user(self, inc_user):
  1594. ''' find a user '''
  1595. index = None
  1596. try:
  1597. index = self.users.index(inc_user)
  1598. except ValueError as _:
  1599. return index
  1600. return index
  1601. def find_group(self, inc_group):
  1602. ''' find a group '''
  1603. index = None
  1604. try:
  1605. index = self.groups.index(inc_group)
  1606. except ValueError as _:
  1607. return index
  1608. return index
  1609. # -*- -*- -*- End included fragment: lib/scc.py -*- -*- -*-
  1610. # -*- -*- -*- Begin included fragment: class/oc_adm_policy_user.py -*- -*- -*-
  1611. class PolicyUserException(Exception):
  1612. ''' PolicyUser exception'''
  1613. pass
  1614. class PolicyUserConfig(OpenShiftCLIConfig):
  1615. ''' PolicyUserConfig is a DTO for user related policy. '''
  1616. def __init__(self, namespace, kubeconfig, policy_options):
  1617. super(PolicyUserConfig, self).__init__(policy_options['name']['value'],
  1618. namespace, kubeconfig, policy_options)
  1619. self.kind = self.get_kind()
  1620. self.namespace = namespace
  1621. def get_kind(self):
  1622. ''' return the kind we are working with '''
  1623. if self.config_options['resource_kind']['value'] == 'role':
  1624. return 'rolebinding'
  1625. elif self.config_options['resource_kind']['value'] == 'cluster-role':
  1626. return 'clusterrolebinding'
  1627. elif self.config_options['resource_kind']['value'] == 'scc':
  1628. return 'scc'
  1629. return None
  1630. # pylint: disable=too-many-return-statements
  1631. class PolicyUser(OpenShiftCLI):
  1632. ''' Class to handle attaching policies to users '''
  1633. def __init__(self,
  1634. config,
  1635. verbose=False):
  1636. ''' Constructor for PolicyUser '''
  1637. super(PolicyUser, self).__init__(config.namespace, config.kubeconfig, verbose)
  1638. self.config = config
  1639. self.verbose = verbose
  1640. self._rolebinding = None
  1641. self._scc = None
  1642. self._cluster_role_bindings = None
  1643. self._role_bindings = None
  1644. @property
  1645. def rolebindings(self):
  1646. if self._role_bindings is None:
  1647. results = self._get('rolebindings', None)
  1648. if results['returncode'] != 0:
  1649. raise OpenShiftCLIError('Could not retrieve rolebindings')
  1650. self._role_bindings = results['results'][0]['items']
  1651. return self._role_bindings
  1652. @property
  1653. def clusterrolebindings(self):
  1654. if self._cluster_role_bindings is None:
  1655. results = self._get('clusterrolebindings', None)
  1656. if results['returncode'] != 0:
  1657. raise OpenShiftCLIError('Could not retrieve clusterrolebindings')
  1658. self._cluster_role_bindings = results['results'][0]['items']
  1659. return self._cluster_role_bindings
  1660. @property
  1661. def role_binding(self):
  1662. ''' role_binding property '''
  1663. return self._rolebinding
  1664. @role_binding.setter
  1665. def role_binding(self, binding):
  1666. ''' setter for role_binding property '''
  1667. self._rolebinding = binding
  1668. @property
  1669. def security_context_constraint(self):
  1670. ''' security_context_constraint property '''
  1671. return self._scc
  1672. @security_context_constraint.setter
  1673. def security_context_constraint(self, scc):
  1674. ''' setter for security_context_constraint property '''
  1675. self._scc = scc
  1676. def get(self):
  1677. '''fetch the desired kind
  1678. This is only used for scc objects.
  1679. The {cluster}rolebindings happen in exists.
  1680. '''
  1681. resource_name = self.config.config_options['name']['value']
  1682. if resource_name == 'cluster-reader':
  1683. resource_name += 's'
  1684. return self._get(self.config.kind, resource_name)
  1685. def exists_role_binding(self):
  1686. ''' return whether role_binding exists '''
  1687. bindings = None
  1688. if self.config.config_options['resource_kind']['value'] == 'cluster-role':
  1689. bindings = self.clusterrolebindings
  1690. else:
  1691. bindings = self.rolebindings
  1692. if bindings is None:
  1693. return False
  1694. for binding in bindings:
  1695. if binding['roleRef']['name'] == self.config.config_options['name']['value'] and \
  1696. binding['userNames'] is not None and \
  1697. self.config.config_options['user']['value'] in binding['userNames']:
  1698. self.role_binding = binding
  1699. return True
  1700. return False
  1701. def exists_scc(self):
  1702. ''' return whether scc exists '''
  1703. results = self.get()
  1704. if results['returncode'] == 0:
  1705. self.security_context_constraint = SecurityContextConstraints(results['results'][0])
  1706. if self.security_context_constraint.find_user(self.config.config_options['user']['value']) != None:
  1707. return True
  1708. return False
  1709. return results
  1710. def exists(self):
  1711. '''does the object exist?'''
  1712. if self.config.config_options['resource_kind']['value'] == 'cluster-role':
  1713. return self.exists_role_binding()
  1714. elif self.config.config_options['resource_kind']['value'] == 'role':
  1715. return self.exists_role_binding()
  1716. elif self.config.config_options['resource_kind']['value'] == 'scc':
  1717. return self.exists_scc()
  1718. return False
  1719. def perform(self):
  1720. '''perform action on resource'''
  1721. cmd = ['policy',
  1722. self.config.config_options['action']['value'],
  1723. self.config.config_options['name']['value'],
  1724. self.config.config_options['user']['value']]
  1725. if self.config.config_options['role_namespace']['value'] is not None:
  1726. cmd.extend(['--role-namespace', self.config.config_options['role_namespace']['value']])
  1727. return self.openshift_cmd(cmd, oadm=True)
  1728. @staticmethod
  1729. def run_ansible(params, check_mode):
  1730. '''run the idempotent ansible code'''
  1731. state = params['state']
  1732. action = None
  1733. if state == 'present':
  1734. action = 'add-' + params['resource_kind'] + '-to-user'
  1735. else:
  1736. action = 'remove-' + params['resource_kind'] + '-from-user'
  1737. nconfig = PolicyUserConfig(params['namespace'],
  1738. params['kubeconfig'],
  1739. {'action': {'value': action, 'include': False},
  1740. 'user': {'value': params['user'], 'include': False},
  1741. 'resource_kind': {'value': params['resource_kind'], 'include': False},
  1742. 'name': {'value': params['resource_name'], 'include': False},
  1743. 'role_namespace': {'value': params['role_namespace'], 'include': False},
  1744. })
  1745. policyuser = PolicyUser(nconfig, params['debug'])
  1746. # Run the oc adm policy user related command
  1747. ########
  1748. # Delete
  1749. ########
  1750. if state == 'absent':
  1751. if not policyuser.exists():
  1752. return {'changed': False, 'state': 'absent'}
  1753. if check_mode:
  1754. return {'changed': False, 'msg': 'CHECK_MODE: would have performed a delete.'}
  1755. api_rval = policyuser.perform()
  1756. if api_rval['returncode'] != 0:
  1757. return {'msg': api_rval}
  1758. return {'changed': True, 'results' : api_rval, state:'absent'}
  1759. if state == 'present':
  1760. ########
  1761. # Create
  1762. ########
  1763. results = policyuser.exists()
  1764. if isinstance(results, dict) and 'returncode' in results and results['returncode'] != 0:
  1765. return {'msg': results}
  1766. if not results:
  1767. if check_mode:
  1768. return {'changed': False, 'msg': 'CHECK_MODE: would have performed a create.'}
  1769. api_rval = policyuser.perform()
  1770. if api_rval['returncode'] != 0:
  1771. return {'msg': api_rval}
  1772. return {'changed': True, 'results': api_rval, state: 'present'}
  1773. return {'changed': False, state: 'present'}
  1774. return {'failed': True, 'changed': False, 'results': 'Unknown state passed. %s' % state, state: 'unknown'}
  1775. # -*- -*- -*- End included fragment: class/oc_adm_policy_user.py -*- -*- -*-
  1776. # -*- -*- -*- Begin included fragment: ansible/oc_adm_policy_user.py -*- -*- -*-
  1777. def main():
  1778. '''
  1779. ansible oc adm module for user policy
  1780. '''
  1781. module = AnsibleModule(
  1782. argument_spec=dict(
  1783. state=dict(default='present', type='str',
  1784. choices=['present', 'absent']),
  1785. debug=dict(default=False, type='bool'),
  1786. resource_name=dict(required=True, type='str'),
  1787. namespace=dict(default='default', type='str'),
  1788. role_namespace=dict(default=None, type='str'),
  1789. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1790. user=dict(required=True, type='str'),
  1791. resource_kind=dict(required=True, choices=['role', 'cluster-role', 'scc'], type='str'),
  1792. ),
  1793. supports_check_mode=True,
  1794. )
  1795. results = PolicyUser.run_ansible(module.params, module.check_mode)
  1796. if 'failed' in results:
  1797. module.fail_json(**results)
  1798. module.exit_json(**results)
  1799. if __name__ == "__main__":
  1800. main()
  1801. # -*- -*- -*- End included fragment: ansible/oc_adm_policy_user.py -*- -*- -*-