oc_adm_policy_user.py 71 KB

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