oc_adm_policy_user.py 72 KB

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