oc_adm_policy_user.py 71 KB

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