oc_user.py 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779
  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/user -*- -*- -*-
  50. DOCUMENTATION = '''
  51. ---
  52. module: oc_user
  53. short_description: Create, modify, and idempotently manage openshift users.
  54. description:
  55. - Modify openshift users programmatically.
  56. options:
  57. state:
  58. description:
  59. - State controls the action that will be taken with resource
  60. - 'present' will create or update a user to the desired state
  61. - 'absent' will ensure user is removed
  62. - 'list' will read and return a list of users
  63. default: present
  64. choices: ["present", "absent", "list"]
  65. aliases: []
  66. kubeconfig:
  67. description:
  68. - The path for the kubeconfig file to use for authentication
  69. required: false
  70. default: /etc/origin/master/admin.kubeconfig
  71. aliases: []
  72. debug:
  73. description:
  74. - Turn on debug output.
  75. required: false
  76. default: False
  77. aliases: []
  78. username:
  79. description:
  80. - Short username to query/modify.
  81. required: false
  82. default: None
  83. aliases: []
  84. full_name:
  85. description:
  86. - String with the full name/description of the user.
  87. required: false
  88. default: None
  89. aliases: []
  90. groups:
  91. description:
  92. - List of groups the user should be a member of. This does not add/update the legacy 'groups' field in the OpenShift user object, but makes user entries into the appropriate OpenShift group object for the given user.
  93. required: false
  94. default: []
  95. aliases: []
  96. author:
  97. - "Joel Diaz <jdiaz@redhat.com>"
  98. extends_documentation_fragment: []
  99. '''
  100. EXAMPLES = '''
  101. - name: Ensure user exists
  102. oc_user:
  103. state: present
  104. username: johndoe
  105. full_name "John Doe"
  106. groups:
  107. - dedicated-admins
  108. register: user_johndoe
  109. user_johndoe variable will have contents like:
  110. ok: [ded-int-aws-master-61034] => {
  111. "user_johndoe": {
  112. "changed": true,
  113. "results": {
  114. "cmd": "oc -n default get users johndoe -o json",
  115. "results": [
  116. {
  117. "apiVersion": "v1",
  118. "fullName": "John DOe",
  119. "groups": null,
  120. "identities": null,
  121. "kind": "User",
  122. "metadata": {
  123. "creationTimestamp": "2017-02-28T15:09:21Z",
  124. "name": "johndoe",
  125. "resourceVersion": "848781",
  126. "selfLink": "/oapi/v1/users/johndoe",
  127. "uid": "e23d3300-fdc7-11e6-9e3e-12822d6b7656"
  128. }
  129. }
  130. ],
  131. "returncode": 0
  132. },
  133. "state": "present"
  134. }
  135. }
  136. 'groups' is empty because this field is the OpenShift user object's 'group' field.
  137. - name: Ensure user does not exist
  138. oc_user:
  139. state: absent
  140. username: johndoe
  141. - name: List user's info
  142. oc_user:
  143. state: list
  144. username: johndoe
  145. register: user_johndoe
  146. user_johndoe will have contents similar to:
  147. ok: [ded-int-aws-master-61034] => {
  148. "user_johndoe": {
  149. "changed": false,
  150. "results": [
  151. {
  152. "apiVersion": "v1",
  153. "fullName": "John Doe",
  154. "groups": null,
  155. "identities": null,
  156. "kind": "User",
  157. "metadata": {
  158. "creationTimestamp": "2017-02-28T15:04:44Z",
  159. "name": "johndoe",
  160. "resourceVersion": "848280",
  161. "selfLink": "/oapi/v1/users/johndoe",
  162. "uid": "3d479ad2-fdc7-11e6-9e3e-12822d6b7656"
  163. }
  164. }
  165. ],
  166. "state": "list"
  167. }
  168. }
  169. '''
  170. # -*- -*- -*- End included fragment: doc/user -*- -*- -*-
  171. # -*- -*- -*- Begin included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  172. class YeditException(Exception): # pragma: no cover
  173. ''' Exception class for Yedit '''
  174. pass
  175. # pylint: disable=too-many-public-methods
  176. class Yedit(object): # pragma: no cover
  177. ''' Class to modify yaml files '''
  178. re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$"
  179. re_key = r"(?:\[(-?\d+)\])|([0-9a-zA-Z{}/_-]+)"
  180. com_sep = set(['.', '#', '|', ':'])
  181. # pylint: disable=too-many-arguments
  182. def __init__(self,
  183. filename=None,
  184. content=None,
  185. content_type='yaml',
  186. separator='.',
  187. backup=False):
  188. self.content = content
  189. self._separator = separator
  190. self.filename = filename
  191. self.__yaml_dict = content
  192. self.content_type = content_type
  193. self.backup = backup
  194. self.load(content_type=self.content_type)
  195. if self.__yaml_dict is None:
  196. self.__yaml_dict = {}
  197. @property
  198. def separator(self):
  199. ''' getter method for separator '''
  200. return self._separator
  201. @separator.setter
  202. def separator(self, inc_sep):
  203. ''' setter method for separator '''
  204. self._separator = inc_sep
  205. @property
  206. def yaml_dict(self):
  207. ''' getter method for yaml_dict '''
  208. return self.__yaml_dict
  209. @yaml_dict.setter
  210. def yaml_dict(self, value):
  211. ''' setter method for yaml_dict '''
  212. self.__yaml_dict = value
  213. @staticmethod
  214. def parse_key(key, sep='.'):
  215. '''parse the key allowing the appropriate separator'''
  216. common_separators = list(Yedit.com_sep - set([sep]))
  217. return re.findall(Yedit.re_key.format(''.join(common_separators)), key)
  218. @staticmethod
  219. def valid_key(key, sep='.'):
  220. '''validate the incoming key'''
  221. common_separators = list(Yedit.com_sep - set([sep]))
  222. if not re.match(Yedit.re_valid_key.format(''.join(common_separators)), key):
  223. return False
  224. return True
  225. @staticmethod
  226. def remove_entry(data, key, sep='.'):
  227. ''' remove data at location key '''
  228. if key == '' and isinstance(data, dict):
  229. data.clear()
  230. return True
  231. elif key == '' and isinstance(data, list):
  232. del data[:]
  233. return True
  234. if not (key and Yedit.valid_key(key, sep)) and \
  235. isinstance(data, (list, dict)):
  236. return None
  237. key_indexes = Yedit.parse_key(key, sep)
  238. for arr_ind, dict_key in key_indexes[:-1]:
  239. if dict_key and isinstance(data, dict):
  240. data = data.get(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. return None
  246. # process last index for remove
  247. # expected list entry
  248. if key_indexes[-1][0]:
  249. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  250. del data[int(key_indexes[-1][0])]
  251. return True
  252. # expected dict entry
  253. elif key_indexes[-1][1]:
  254. if isinstance(data, dict):
  255. del data[key_indexes[-1][1]]
  256. return True
  257. @staticmethod
  258. def add_entry(data, key, item=None, sep='.'):
  259. ''' Get an item from a dictionary with key notation a.b.c
  260. d = {'a': {'b': 'c'}}}
  261. key = a#b
  262. return c
  263. '''
  264. if key == '':
  265. pass
  266. elif (not (key and Yedit.valid_key(key, sep)) and
  267. isinstance(data, (list, dict))):
  268. return None
  269. key_indexes = Yedit.parse_key(key, sep)
  270. for arr_ind, dict_key in key_indexes[:-1]:
  271. if dict_key:
  272. if isinstance(data, dict) and dict_key in data and data[dict_key]: # noqa: E501
  273. data = data[dict_key]
  274. continue
  275. elif data and not isinstance(data, dict):
  276. raise YeditException("Unexpected item type found while going through key " +
  277. "path: {} (at key: {})".format(key, dict_key))
  278. data[dict_key] = {}
  279. data = data[dict_key]
  280. elif (arr_ind and isinstance(data, list) and
  281. int(arr_ind) <= len(data) - 1):
  282. data = data[int(arr_ind)]
  283. else:
  284. raise YeditException("Unexpected item type found while going through key path: {}".format(key))
  285. if key == '':
  286. data = item
  287. # process last index for add
  288. # expected list entry
  289. elif key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  290. data[int(key_indexes[-1][0])] = item
  291. # expected dict entry
  292. elif key_indexes[-1][1] and isinstance(data, dict):
  293. data[key_indexes[-1][1]] = item
  294. # didn't add/update to an existing list, nor add/update key to a dict
  295. # so we must have been provided some syntax like a.b.c[<int>] = "data" for a
  296. # non-existent array
  297. else:
  298. raise YeditException("Error adding to object at path: {}".format(key))
  299. return data
  300. @staticmethod
  301. def get_entry(data, key, sep='.'):
  302. ''' Get an item from a dictionary with key notation a.b.c
  303. d = {'a': {'b': 'c'}}}
  304. key = a.b
  305. return c
  306. '''
  307. if key == '':
  308. pass
  309. elif (not (key and Yedit.valid_key(key, sep)) and
  310. isinstance(data, (list, dict))):
  311. return None
  312. key_indexes = Yedit.parse_key(key, sep)
  313. for arr_ind, dict_key in key_indexes:
  314. if dict_key and isinstance(data, dict):
  315. data = data.get(dict_key)
  316. elif (arr_ind and isinstance(data, list) and
  317. int(arr_ind) <= len(data) - 1):
  318. data = data[int(arr_ind)]
  319. else:
  320. return None
  321. return data
  322. @staticmethod
  323. def _write(filename, contents):
  324. ''' Actually write the file contents to disk. This helps with mocking. '''
  325. tmp_filename = filename + '.yedit'
  326. with open(tmp_filename, 'w') as yfd:
  327. fcntl.flock(yfd, fcntl.LOCK_EX | fcntl.LOCK_NB)
  328. yfd.write(contents)
  329. fcntl.flock(yfd, fcntl.LOCK_UN)
  330. os.rename(tmp_filename, filename)
  331. def write(self):
  332. ''' write to file '''
  333. if not self.filename:
  334. raise YeditException('Please specify a filename.')
  335. if self.backup and self.file_exists():
  336. shutil.copy(self.filename, self.filename + '.orig')
  337. # Try to set format attributes if supported
  338. try:
  339. self.yaml_dict.fa.set_block_style()
  340. except AttributeError:
  341. pass
  342. # Try to use RoundTripDumper if supported.
  343. if self.content_type == 'yaml':
  344. try:
  345. Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
  346. except AttributeError:
  347. Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  348. elif self.content_type == 'json':
  349. Yedit._write(self.filename, json.dumps(self.yaml_dict, indent=4, sort_keys=True))
  350. else:
  351. raise YeditException('Unsupported content_type: {}.'.format(self.content_type) +
  352. 'Please specify a content_type of yaml or json.')
  353. return (True, self.yaml_dict)
  354. def read(self):
  355. ''' read from file '''
  356. # check if it exists
  357. if self.filename is None or not self.file_exists():
  358. return None
  359. contents = None
  360. with open(self.filename) as yfd:
  361. contents = yfd.read()
  362. return contents
  363. def file_exists(self):
  364. ''' return whether file exists '''
  365. if os.path.exists(self.filename):
  366. return True
  367. return False
  368. def load(self, content_type='yaml'):
  369. ''' return yaml file '''
  370. contents = self.read()
  371. if not contents and not self.content:
  372. return None
  373. if self.content:
  374. if isinstance(self.content, dict):
  375. self.yaml_dict = self.content
  376. return self.yaml_dict
  377. elif isinstance(self.content, str):
  378. contents = self.content
  379. # check if it is yaml
  380. try:
  381. if content_type == 'yaml' and contents:
  382. # Try to set format attributes if supported
  383. try:
  384. self.yaml_dict.fa.set_block_style()
  385. except AttributeError:
  386. pass
  387. # Try to use RoundTripLoader if supported.
  388. try:
  389. self.yaml_dict = yaml.load(contents, yaml.RoundTripLoader)
  390. except AttributeError:
  391. self.yaml_dict = yaml.safe_load(contents)
  392. # Try to set format attributes if supported
  393. try:
  394. self.yaml_dict.fa.set_block_style()
  395. except AttributeError:
  396. pass
  397. elif content_type == 'json' and contents:
  398. self.yaml_dict = json.loads(contents)
  399. except yaml.YAMLError as err:
  400. # Error loading yaml or json
  401. raise YeditException('Problem with loading yaml file. {}'.format(err))
  402. return self.yaml_dict
  403. def get(self, key):
  404. ''' get a specified key'''
  405. try:
  406. entry = Yedit.get_entry(self.yaml_dict, key, self.separator)
  407. except KeyError:
  408. entry = None
  409. return entry
  410. def pop(self, path, key_or_item):
  411. ''' remove a key, value pair from a dict or an item for a list'''
  412. try:
  413. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  414. except KeyError:
  415. entry = None
  416. if entry is None:
  417. return (False, self.yaml_dict)
  418. if isinstance(entry, dict):
  419. # AUDIT:maybe-no-member makes sense due to fuzzy types
  420. # pylint: disable=maybe-no-member
  421. if key_or_item in entry:
  422. entry.pop(key_or_item)
  423. return (True, self.yaml_dict)
  424. return (False, self.yaml_dict)
  425. elif isinstance(entry, list):
  426. # AUDIT:maybe-no-member makes sense due to fuzzy types
  427. # pylint: disable=maybe-no-member
  428. ind = None
  429. try:
  430. ind = entry.index(key_or_item)
  431. except ValueError:
  432. return (False, self.yaml_dict)
  433. entry.pop(ind)
  434. return (True, self.yaml_dict)
  435. return (False, self.yaml_dict)
  436. def delete(self, path):
  437. ''' remove path from a dict'''
  438. try:
  439. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  440. except KeyError:
  441. entry = None
  442. if entry is None:
  443. return (False, self.yaml_dict)
  444. result = Yedit.remove_entry(self.yaml_dict, path, self.separator)
  445. if not result:
  446. return (False, self.yaml_dict)
  447. return (True, self.yaml_dict)
  448. def exists(self, path, value):
  449. ''' check if value exists at path'''
  450. try:
  451. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  452. except KeyError:
  453. entry = None
  454. if isinstance(entry, list):
  455. if value in entry:
  456. return True
  457. return False
  458. elif isinstance(entry, dict):
  459. if isinstance(value, dict):
  460. rval = False
  461. for key, val in value.items():
  462. if entry[key] != val:
  463. rval = False
  464. break
  465. else:
  466. rval = True
  467. return rval
  468. return value in entry
  469. return entry == value
  470. def append(self, path, value):
  471. '''append value to a list'''
  472. try:
  473. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  474. except KeyError:
  475. entry = None
  476. if entry is None:
  477. self.put(path, [])
  478. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  479. if not isinstance(entry, list):
  480. return (False, self.yaml_dict)
  481. # AUDIT:maybe-no-member makes sense due to loading data from
  482. # a serialized format.
  483. # pylint: disable=maybe-no-member
  484. entry.append(value)
  485. return (True, self.yaml_dict)
  486. # pylint: disable=too-many-arguments
  487. def update(self, path, value, index=None, curr_value=None):
  488. ''' put path, value into a dict '''
  489. try:
  490. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  491. except KeyError:
  492. entry = None
  493. if isinstance(entry, dict):
  494. # AUDIT:maybe-no-member makes sense due to fuzzy types
  495. # pylint: disable=maybe-no-member
  496. if not isinstance(value, dict):
  497. raise YeditException('Cannot replace key, value entry in dict with non-dict type. ' +
  498. 'value=[{}] type=[{}]'.format(value, type(value)))
  499. entry.update(value)
  500. return (True, self.yaml_dict)
  501. elif isinstance(entry, list):
  502. # AUDIT:maybe-no-member makes sense due to fuzzy types
  503. # pylint: disable=maybe-no-member
  504. ind = None
  505. if curr_value:
  506. try:
  507. ind = entry.index(curr_value)
  508. except ValueError:
  509. return (False, self.yaml_dict)
  510. elif index is not None:
  511. ind = index
  512. if ind is not None and entry[ind] != value:
  513. entry[ind] = value
  514. return (True, self.yaml_dict)
  515. # see if it exists in the list
  516. try:
  517. ind = entry.index(value)
  518. except ValueError:
  519. # doesn't exist, append it
  520. entry.append(value)
  521. return (True, self.yaml_dict)
  522. # already exists, return
  523. if ind is not None:
  524. return (False, self.yaml_dict)
  525. return (False, self.yaml_dict)
  526. def put(self, path, value):
  527. ''' put path, value into a dict '''
  528. try:
  529. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  530. except KeyError:
  531. entry = None
  532. if entry == value:
  533. return (False, self.yaml_dict)
  534. # deepcopy didn't work
  535. # Try to use ruamel.yaml and fallback to pyyaml
  536. try:
  537. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  538. default_flow_style=False),
  539. yaml.RoundTripLoader)
  540. except AttributeError:
  541. tmp_copy = copy.deepcopy(self.yaml_dict)
  542. # set the format attributes if available
  543. try:
  544. tmp_copy.fa.set_block_style()
  545. except AttributeError:
  546. pass
  547. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  548. if result is None:
  549. return (False, self.yaml_dict)
  550. # When path equals "" it is a special case.
  551. # "" refers to the root of the document
  552. # Only update the root path (entire document) when its a list or dict
  553. if path == '':
  554. if isinstance(result, list) or isinstance(result, dict):
  555. self.yaml_dict = result
  556. return (True, self.yaml_dict)
  557. return (False, self.yaml_dict)
  558. self.yaml_dict = tmp_copy
  559. return (True, self.yaml_dict)
  560. def create(self, path, value):
  561. ''' create a yaml file '''
  562. if not self.file_exists():
  563. # deepcopy didn't work
  564. # Try to use ruamel.yaml and fallback to pyyaml
  565. try:
  566. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  567. default_flow_style=False),
  568. yaml.RoundTripLoader)
  569. except AttributeError:
  570. tmp_copy = copy.deepcopy(self.yaml_dict)
  571. # set the format attributes if available
  572. try:
  573. tmp_copy.fa.set_block_style()
  574. except AttributeError:
  575. pass
  576. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  577. if result is not None:
  578. self.yaml_dict = tmp_copy
  579. return (True, self.yaml_dict)
  580. return (False, self.yaml_dict)
  581. @staticmethod
  582. def get_curr_value(invalue, val_type):
  583. '''return the current value'''
  584. if invalue is None:
  585. return None
  586. curr_value = invalue
  587. if val_type == 'yaml':
  588. try:
  589. # AUDIT:maybe-no-member makes sense due to different yaml libraries
  590. # pylint: disable=maybe-no-member
  591. curr_value = yaml.safe_load(invalue, Loader=yaml.RoundTripLoader)
  592. except AttributeError:
  593. curr_value = yaml.safe_load(invalue)
  594. elif val_type == 'json':
  595. curr_value = json.loads(invalue)
  596. return curr_value
  597. @staticmethod
  598. def parse_value(inc_value, vtype=''):
  599. '''determine value type passed'''
  600. true_bools = ['y', 'Y', 'yes', 'Yes', 'YES', 'true', 'True', 'TRUE',
  601. 'on', 'On', 'ON', ]
  602. false_bools = ['n', 'N', 'no', 'No', 'NO', 'false', 'False', 'FALSE',
  603. 'off', 'Off', 'OFF']
  604. # It came in as a string but you didn't specify value_type as string
  605. # we will convert to bool if it matches any of the above cases
  606. if isinstance(inc_value, str) and 'bool' in vtype:
  607. if inc_value not in true_bools and inc_value not in false_bools:
  608. raise YeditException('Not a boolean type. str=[{}] vtype=[{}]'.format(inc_value, vtype))
  609. elif isinstance(inc_value, bool) and 'str' in vtype:
  610. inc_value = str(inc_value)
  611. # There is a special case where '' will turn into None after yaml loading it so skip
  612. if isinstance(inc_value, str) and inc_value == '':
  613. pass
  614. # If vtype is not str then go ahead and attempt to yaml load it.
  615. elif isinstance(inc_value, str) and 'str' not in vtype:
  616. try:
  617. inc_value = yaml.safe_load(inc_value)
  618. except Exception:
  619. raise YeditException('Could not determine type of incoming value. ' +
  620. 'value=[{}] vtype=[{}]'.format(type(inc_value), vtype))
  621. return inc_value
  622. @staticmethod
  623. def process_edits(edits, yamlfile):
  624. '''run through a list of edits and process them one-by-one'''
  625. results = []
  626. for edit in edits:
  627. value = Yedit.parse_value(edit['value'], edit.get('value_type', ''))
  628. if edit.get('action') == 'update':
  629. # pylint: disable=line-too-long
  630. curr_value = Yedit.get_curr_value(
  631. Yedit.parse_value(edit.get('curr_value')),
  632. edit.get('curr_value_format'))
  633. rval = yamlfile.update(edit['key'],
  634. value,
  635. edit.get('index'),
  636. curr_value)
  637. elif edit.get('action') == 'append':
  638. rval = yamlfile.append(edit['key'], value)
  639. else:
  640. rval = yamlfile.put(edit['key'], value)
  641. if rval[0]:
  642. results.append({'key': edit['key'], 'edit': rval[1]})
  643. return {'changed': len(results) > 0, 'results': results}
  644. # pylint: disable=too-many-return-statements,too-many-branches
  645. @staticmethod
  646. def run_ansible(params):
  647. '''perform the idempotent crud operations'''
  648. yamlfile = Yedit(filename=params['src'],
  649. backup=params['backup'],
  650. content_type=params['content_type'],
  651. separator=params['separator'])
  652. state = params['state']
  653. if params['src']:
  654. rval = yamlfile.load()
  655. if yamlfile.yaml_dict is None and state != 'present':
  656. return {'failed': True,
  657. 'msg': 'Error opening file [{}]. Verify that the '.format(params['src']) +
  658. 'file exists, that it is has correct permissions, and is valid yaml.'}
  659. if state == 'list':
  660. if params['content']:
  661. content = Yedit.parse_value(params['content'], params['content_type'])
  662. yamlfile.yaml_dict = content
  663. if params['key']:
  664. rval = yamlfile.get(params['key'])
  665. return {'changed': False, 'result': rval, 'state': state}
  666. elif state == 'absent':
  667. if params['content']:
  668. content = Yedit.parse_value(params['content'], params['content_type'])
  669. yamlfile.yaml_dict = content
  670. if params['update']:
  671. rval = yamlfile.pop(params['key'], params['value'])
  672. else:
  673. rval = yamlfile.delete(params['key'])
  674. if rval[0] and params['src']:
  675. yamlfile.write()
  676. return {'changed': rval[0], 'result': rval[1], 'state': state}
  677. elif state == 'present':
  678. # check if content is different than what is in the file
  679. if params['content']:
  680. content = Yedit.parse_value(params['content'], params['content_type'])
  681. # We had no edits to make and the contents are the same
  682. if yamlfile.yaml_dict == content and \
  683. params['value'] is None:
  684. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  685. yamlfile.yaml_dict = content
  686. # If we were passed a key, value then
  687. # we enapsulate it in a list and process it
  688. # Key, Value passed to the module : Converted to Edits list #
  689. edits = []
  690. _edit = {}
  691. if params['value'] is not None:
  692. _edit['value'] = params['value']
  693. _edit['value_type'] = params['value_type']
  694. _edit['key'] = params['key']
  695. if params['update']:
  696. _edit['action'] = 'update'
  697. _edit['curr_value'] = params['curr_value']
  698. _edit['curr_value_format'] = params['curr_value_format']
  699. _edit['index'] = params['index']
  700. elif params['append']:
  701. _edit['action'] = 'append'
  702. edits.append(_edit)
  703. elif params['edits'] is not None:
  704. edits = params['edits']
  705. if edits:
  706. results = Yedit.process_edits(edits, yamlfile)
  707. # if there were changes and a src provided to us we need to write
  708. if results['changed'] and params['src']:
  709. yamlfile.write()
  710. return {'changed': results['changed'], 'result': results['results'], 'state': state}
  711. # no edits to make
  712. if params['src']:
  713. # pylint: disable=redefined-variable-type
  714. rval = yamlfile.write()
  715. return {'changed': rval[0],
  716. 'result': rval[1],
  717. 'state': state}
  718. # We were passed content but no src, key or value, or edits. Return contents in memory
  719. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  720. return {'failed': True, 'msg': 'Unkown state passed'}
  721. # -*- -*- -*- End included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  722. # -*- -*- -*- Begin included fragment: lib/base.py -*- -*- -*-
  723. # pylint: disable=too-many-lines
  724. # noqa: E301,E302,E303,T001
  725. class OpenShiftCLIError(Exception):
  726. '''Exception class for openshiftcli'''
  727. pass
  728. ADDITIONAL_PATH_LOOKUPS = ['/usr/local/bin', os.path.expanduser('~/bin')]
  729. def locate_oc_binary():
  730. ''' Find and return oc binary file '''
  731. # https://github.com/openshift/openshift-ansible/issues/3410
  732. # oc can be in /usr/local/bin in some cases, but that may not
  733. # be in $PATH due to ansible/sudo
  734. paths = os.environ.get("PATH", os.defpath).split(os.pathsep) + ADDITIONAL_PATH_LOOKUPS
  735. oc_binary = 'oc'
  736. # Use shutil.which if it is available, otherwise fallback to a naive path search
  737. try:
  738. which_result = shutil.which(oc_binary, path=os.pathsep.join(paths))
  739. if which_result is not None:
  740. oc_binary = which_result
  741. except AttributeError:
  742. for path in paths:
  743. if os.path.exists(os.path.join(path, oc_binary)):
  744. oc_binary = os.path.join(path, oc_binary)
  745. break
  746. return oc_binary
  747. # pylint: disable=too-few-public-methods
  748. class OpenShiftCLI(object):
  749. ''' Class to wrap the command line tools '''
  750. def __init__(self,
  751. namespace,
  752. kubeconfig='/etc/origin/master/admin.kubeconfig',
  753. verbose=False,
  754. all_namespaces=False):
  755. ''' Constructor for OpenshiftCLI '''
  756. self.namespace = namespace
  757. self.verbose = verbose
  758. self.kubeconfig = Utils.create_tmpfile_copy(kubeconfig)
  759. self.all_namespaces = all_namespaces
  760. self.oc_binary = locate_oc_binary()
  761. # Pylint allows only 5 arguments to be passed.
  762. # pylint: disable=too-many-arguments
  763. def _replace_content(self, resource, rname, content, force=False, sep='.'):
  764. ''' replace the current object with the content '''
  765. res = self._get(resource, rname)
  766. if not res['results']:
  767. return res
  768. fname = Utils.create_tmpfile(rname + '-')
  769. yed = Yedit(fname, res['results'][0], separator=sep)
  770. changes = []
  771. for key, value in content.items():
  772. changes.append(yed.put(key, value))
  773. if any([change[0] for change in changes]):
  774. yed.write()
  775. atexit.register(Utils.cleanup, [fname])
  776. return self._replace(fname, force)
  777. return {'returncode': 0, 'updated': False}
  778. def _replace(self, fname, force=False):
  779. '''replace the current object with oc replace'''
  780. # We are removing the 'resourceVersion' to handle
  781. # a race condition when modifying oc objects
  782. yed = Yedit(fname)
  783. results = yed.delete('metadata.resourceVersion')
  784. if results[0]:
  785. yed.write()
  786. cmd = ['replace', '-f', fname]
  787. if force:
  788. cmd.append('--force')
  789. return self.openshift_cmd(cmd)
  790. def _create_from_content(self, rname, content):
  791. '''create a temporary file and then call oc create on it'''
  792. fname = Utils.create_tmpfile(rname + '-')
  793. yed = Yedit(fname, content=content)
  794. yed.write()
  795. atexit.register(Utils.cleanup, [fname])
  796. return self._create(fname)
  797. def _create(self, fname):
  798. '''call oc create on a filename'''
  799. return self.openshift_cmd(['create', '-f', fname])
  800. def _delete(self, resource, name=None, selector=None):
  801. '''call oc delete on a resource'''
  802. cmd = ['delete', resource]
  803. if selector is not None:
  804. cmd.append('--selector={}'.format(selector))
  805. elif name is not None:
  806. cmd.append(name)
  807. else:
  808. raise OpenShiftCLIError('Either name or selector is required when calling delete.')
  809. return self.openshift_cmd(cmd)
  810. def _process(self, template_name, create=False, params=None, template_data=None): # noqa: E501
  811. '''process a template
  812. template_name: the name of the template to process
  813. create: whether to send to oc create after processing
  814. params: the parameters for the template
  815. template_data: the incoming template's data; instead of a file
  816. '''
  817. cmd = ['process']
  818. if template_data:
  819. cmd.extend(['-f', '-'])
  820. else:
  821. cmd.append(template_name)
  822. if params:
  823. param_str = ["{}={}".format(key, str(value).replace("'", r'"')) for key, value in params.items()]
  824. cmd.append('-v')
  825. cmd.extend(param_str)
  826. results = self.openshift_cmd(cmd, output=True, input_data=template_data)
  827. if results['returncode'] != 0 or not create:
  828. return results
  829. fname = Utils.create_tmpfile(template_name + '-')
  830. yed = Yedit(fname, results['results'])
  831. yed.write()
  832. atexit.register(Utils.cleanup, [fname])
  833. return self.openshift_cmd(['create', '-f', fname])
  834. def _get(self, resource, name=None, selector=None):
  835. '''return a resource by name '''
  836. cmd = ['get', resource]
  837. if selector is not None:
  838. cmd.append('--selector={}'.format(selector))
  839. elif name is not None:
  840. cmd.append(name)
  841. cmd.extend(['-o', 'json'])
  842. rval = self.openshift_cmd(cmd, output=True)
  843. # Ensure results are retuned in an array
  844. if 'items' in rval:
  845. rval['results'] = rval['items']
  846. elif not isinstance(rval['results'], list):
  847. rval['results'] = [rval['results']]
  848. return rval
  849. def _schedulable(self, node=None, selector=None, schedulable=True):
  850. ''' perform oadm manage-node scheduable '''
  851. cmd = ['manage-node']
  852. if node:
  853. cmd.extend(node)
  854. else:
  855. cmd.append('--selector={}'.format(selector))
  856. cmd.append('--schedulable={}'.format(schedulable))
  857. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  858. def _list_pods(self, node=None, selector=None, pod_selector=None):
  859. ''' perform oadm list pods
  860. node: the node in which to list pods
  861. selector: the label selector filter if provided
  862. pod_selector: the pod selector filter if provided
  863. '''
  864. cmd = ['manage-node']
  865. if node:
  866. cmd.extend(node)
  867. else:
  868. cmd.append('--selector={}'.format(selector))
  869. if pod_selector:
  870. cmd.append('--pod-selector={}'.format(pod_selector))
  871. cmd.extend(['--list-pods', '-o', 'json'])
  872. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  873. # pylint: disable=too-many-arguments
  874. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  875. ''' perform oadm manage-node evacuate '''
  876. cmd = ['manage-node']
  877. if node:
  878. cmd.extend(node)
  879. else:
  880. cmd.append('--selector={}'.format(selector))
  881. if dry_run:
  882. cmd.append('--dry-run')
  883. if pod_selector:
  884. cmd.append('--pod-selector={}'.format(pod_selector))
  885. if grace_period:
  886. cmd.append('--grace-period={}'.format(int(grace_period)))
  887. if force:
  888. cmd.append('--force')
  889. cmd.append('--evacuate')
  890. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  891. def _version(self):
  892. ''' return the openshift version'''
  893. return self.openshift_cmd(['version'], output=True, output_type='raw')
  894. def _import_image(self, url=None, name=None, tag=None):
  895. ''' perform image import '''
  896. cmd = ['import-image']
  897. image = '{0}'.format(name)
  898. if tag:
  899. image += ':{0}'.format(tag)
  900. cmd.append(image)
  901. if url:
  902. cmd.append('--from={0}/{1}'.format(url, image))
  903. cmd.append('-n{0}'.format(self.namespace))
  904. cmd.append('--confirm')
  905. return self.openshift_cmd(cmd)
  906. def _run(self, cmds, input_data):
  907. ''' Actually executes the command. This makes mocking easier. '''
  908. curr_env = os.environ.copy()
  909. curr_env.update({'KUBECONFIG': self.kubeconfig})
  910. proc = subprocess.Popen(cmds,
  911. stdin=subprocess.PIPE,
  912. stdout=subprocess.PIPE,
  913. stderr=subprocess.PIPE,
  914. env=curr_env)
  915. stdout, stderr = proc.communicate(input_data)
  916. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  917. # pylint: disable=too-many-arguments,too-many-branches
  918. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  919. '''Base command for oc '''
  920. cmds = [self.oc_binary]
  921. if oadm:
  922. cmds.append('adm')
  923. cmds.extend(cmd)
  924. if self.all_namespaces:
  925. cmds.extend(['--all-namespaces'])
  926. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  927. cmds.extend(['-n', self.namespace])
  928. if self.verbose:
  929. print(' '.join(cmds))
  930. try:
  931. returncode, stdout, stderr = self._run(cmds, input_data)
  932. except OSError as ex:
  933. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  934. rval = {"returncode": returncode,
  935. "cmd": ' '.join(cmds)}
  936. if output_type == 'json':
  937. rval['results'] = {}
  938. if output and stdout:
  939. try:
  940. rval['results'] = json.loads(stdout)
  941. except ValueError as verr:
  942. if "No JSON object could be decoded" in verr.args:
  943. rval['err'] = verr.args
  944. elif output_type == 'raw':
  945. rval['results'] = stdout if output else ''
  946. if self.verbose:
  947. print("STDOUT: {0}".format(stdout))
  948. print("STDERR: {0}".format(stderr))
  949. if 'err' in rval or returncode != 0:
  950. rval.update({"stderr": stderr,
  951. "stdout": stdout})
  952. return rval
  953. class Utils(object): # pragma: no cover
  954. ''' utilities for openshiftcli modules '''
  955. @staticmethod
  956. def _write(filename, contents):
  957. ''' Actually write the file contents to disk. This helps with mocking. '''
  958. with open(filename, 'w') as sfd:
  959. sfd.write(str(contents))
  960. @staticmethod
  961. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  962. ''' create a file in tmp with name and contents'''
  963. tmp = Utils.create_tmpfile(prefix=rname)
  964. if ftype == 'yaml':
  965. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  966. # pylint: disable=no-member
  967. if hasattr(yaml, 'RoundTripDumper'):
  968. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  969. else:
  970. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  971. elif ftype == 'json':
  972. Utils._write(tmp, json.dumps(data))
  973. else:
  974. Utils._write(tmp, data)
  975. # Register cleanup when module is done
  976. atexit.register(Utils.cleanup, [tmp])
  977. return tmp
  978. @staticmethod
  979. def create_tmpfile_copy(inc_file):
  980. '''create a temporary copy of a file'''
  981. tmpfile = Utils.create_tmpfile('lib_openshift-')
  982. Utils._write(tmpfile, open(inc_file).read())
  983. # Cleanup the tmpfile
  984. atexit.register(Utils.cleanup, [tmpfile])
  985. return tmpfile
  986. @staticmethod
  987. def create_tmpfile(prefix='tmp'):
  988. ''' Generates and returns a temporary file name '''
  989. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  990. return tmp.name
  991. @staticmethod
  992. def create_tmp_files_from_contents(content, content_type=None):
  993. '''Turn an array of dict: filename, content into a files array'''
  994. if not isinstance(content, list):
  995. content = [content]
  996. files = []
  997. for item in content:
  998. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  999. item['data'],
  1000. ftype=content_type)
  1001. files.append({'name': os.path.basename(item['path']),
  1002. 'path': path})
  1003. return files
  1004. @staticmethod
  1005. def cleanup(files):
  1006. '''Clean up on exit '''
  1007. for sfile in files:
  1008. if os.path.exists(sfile):
  1009. if os.path.isdir(sfile):
  1010. shutil.rmtree(sfile)
  1011. elif os.path.isfile(sfile):
  1012. os.remove(sfile)
  1013. @staticmethod
  1014. def exists(results, _name):
  1015. ''' Check to see if the results include the name '''
  1016. if not results:
  1017. return False
  1018. if Utils.find_result(results, _name):
  1019. return True
  1020. return False
  1021. @staticmethod
  1022. def find_result(results, _name):
  1023. ''' Find the specified result by name'''
  1024. rval = None
  1025. for result in results:
  1026. if 'metadata' in result and result['metadata']['name'] == _name:
  1027. rval = result
  1028. break
  1029. return rval
  1030. @staticmethod
  1031. def get_resource_file(sfile, sfile_type='yaml'):
  1032. ''' return the service file '''
  1033. contents = None
  1034. with open(sfile) as sfd:
  1035. contents = sfd.read()
  1036. if sfile_type == 'yaml':
  1037. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1038. # pylint: disable=no-member
  1039. if hasattr(yaml, 'RoundTripLoader'):
  1040. contents = yaml.load(contents, yaml.RoundTripLoader)
  1041. else:
  1042. contents = yaml.safe_load(contents)
  1043. elif sfile_type == 'json':
  1044. contents = json.loads(contents)
  1045. return contents
  1046. @staticmethod
  1047. def filter_versions(stdout):
  1048. ''' filter the oc version output '''
  1049. version_dict = {}
  1050. version_search = ['oc', 'openshift', 'kubernetes']
  1051. for line in stdout.strip().split('\n'):
  1052. for term in version_search:
  1053. if not line:
  1054. continue
  1055. if line.startswith(term):
  1056. version_dict[term] = line.split()[-1]
  1057. # horrible hack to get openshift version in Openshift 3.2
  1058. # By default "oc version in 3.2 does not return an "openshift" version
  1059. if "openshift" not in version_dict:
  1060. version_dict["openshift"] = version_dict["oc"]
  1061. return version_dict
  1062. @staticmethod
  1063. def add_custom_versions(versions):
  1064. ''' create custom versions strings '''
  1065. versions_dict = {}
  1066. for tech, version in versions.items():
  1067. # clean up "-" from version
  1068. if "-" in version:
  1069. version = version.split("-")[0]
  1070. if version.startswith('v'):
  1071. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  1072. # "v3.3.0.33" is what we have, we want "3.3"
  1073. versions_dict[tech + '_short'] = version[1:4]
  1074. return versions_dict
  1075. @staticmethod
  1076. def openshift_installed():
  1077. ''' check if openshift is installed '''
  1078. import rpm
  1079. transaction_set = rpm.TransactionSet()
  1080. rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
  1081. return rpmquery.count() > 0
  1082. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1083. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1084. @staticmethod
  1085. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1086. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1087. # Currently these values are autogenerated and we do not need to check them
  1088. skip = ['metadata', 'status']
  1089. if skip_keys:
  1090. skip.extend(skip_keys)
  1091. for key, value in result_def.items():
  1092. if key in skip:
  1093. continue
  1094. # Both are lists
  1095. if isinstance(value, list):
  1096. if key not in user_def:
  1097. if debug:
  1098. print('User data does not have key [%s]' % key)
  1099. print('User data: %s' % user_def)
  1100. return False
  1101. if not isinstance(user_def[key], list):
  1102. if debug:
  1103. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1104. return False
  1105. if len(user_def[key]) != len(value):
  1106. if debug:
  1107. print("List lengths are not equal.")
  1108. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1109. print("user_def: %s" % user_def[key])
  1110. print("value: %s" % value)
  1111. return False
  1112. for values in zip(user_def[key], value):
  1113. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1114. if debug:
  1115. print('sending list - list')
  1116. print(type(values[0]))
  1117. print(type(values[1]))
  1118. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1119. if not result:
  1120. print('list compare returned false')
  1121. return False
  1122. elif value != user_def[key]:
  1123. if debug:
  1124. print('value should be identical')
  1125. print(user_def[key])
  1126. print(value)
  1127. return False
  1128. # recurse on a dictionary
  1129. elif isinstance(value, dict):
  1130. if key not in user_def:
  1131. if debug:
  1132. print("user_def does not have key [%s]" % key)
  1133. return False
  1134. if not isinstance(user_def[key], dict):
  1135. if debug:
  1136. print("dict returned false: not instance of dict")
  1137. return False
  1138. # before passing ensure keys match
  1139. api_values = set(value.keys()) - set(skip)
  1140. user_values = set(user_def[key].keys()) - set(skip)
  1141. if api_values != user_values:
  1142. if debug:
  1143. print("keys are not equal in dict")
  1144. print(user_values)
  1145. print(api_values)
  1146. return False
  1147. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1148. if not result:
  1149. if debug:
  1150. print("dict returned false")
  1151. print(result)
  1152. return False
  1153. # Verify each key, value pair is the same
  1154. else:
  1155. if key not in user_def or value != user_def[key]:
  1156. if debug:
  1157. print("value not equal; user_def does not have key")
  1158. print(key)
  1159. print(value)
  1160. if key in user_def:
  1161. print(user_def[key])
  1162. return False
  1163. if debug:
  1164. print('returning true')
  1165. return True
  1166. class OpenShiftCLIConfig(object):
  1167. '''Generic Config'''
  1168. def __init__(self, rname, namespace, kubeconfig, options):
  1169. self.kubeconfig = kubeconfig
  1170. self.name = rname
  1171. self.namespace = namespace
  1172. self._options = options
  1173. @property
  1174. def config_options(self):
  1175. ''' return config options '''
  1176. return self._options
  1177. def to_option_list(self, ascommalist=''):
  1178. '''return all options as a string
  1179. if ascommalist is set to the name of a key, and
  1180. the value of that key is a dict, format the dict
  1181. as a list of comma delimited key=value pairs'''
  1182. return self.stringify(ascommalist)
  1183. def stringify(self, ascommalist=''):
  1184. ''' return the options hash as cli params in a string
  1185. if ascommalist is set to the name of a key, and
  1186. the value of that key is a dict, format the dict
  1187. as a list of comma delimited key=value pairs '''
  1188. rval = []
  1189. for key in sorted(self.config_options.keys()):
  1190. data = self.config_options[key]
  1191. if data['include'] \
  1192. and (data['value'] is not None or isinstance(data['value'], int)):
  1193. if key == ascommalist:
  1194. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1195. else:
  1196. val = data['value']
  1197. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1198. return rval
  1199. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1200. # -*- -*- -*- Begin included fragment: lib/user.py -*- -*- -*-
  1201. class UserConfig(object):
  1202. ''' Handle user options '''
  1203. def __init__(self,
  1204. kubeconfig,
  1205. username,
  1206. full_name):
  1207. ''' constructor for handling user options '''
  1208. self.kubeconfig = kubeconfig
  1209. self.username = username
  1210. self.full_name = full_name
  1211. self.data = {}
  1212. self.create_dict()
  1213. def create_dict(self):
  1214. ''' return a user as a dict '''
  1215. self.data['apiVersion'] = 'v1'
  1216. self.data['fullName'] = self.full_name
  1217. self.data['groups'] = None
  1218. self.data['identities'] = None
  1219. self.data['kind'] = 'User'
  1220. self.data['metadata'] = {}
  1221. self.data['metadata']['name'] = self.username
  1222. # pylint: disable=too-many-instance-attributes
  1223. class User(Yedit):
  1224. ''' Class to wrap the oc command line tools '''
  1225. kind = 'user'
  1226. def __init__(self, content):
  1227. '''User constructor'''
  1228. super(User, self).__init__(content=content)
  1229. # -*- -*- -*- End included fragment: lib/user.py -*- -*- -*-
  1230. # -*- -*- -*- Begin included fragment: class/oc_user.py -*- -*- -*-
  1231. # pylint: disable=too-many-instance-attributes
  1232. class OCUser(OpenShiftCLI):
  1233. ''' Class to wrap the oc command line tools '''
  1234. kind = 'users'
  1235. def __init__(self,
  1236. config,
  1237. groups=None,
  1238. verbose=False):
  1239. ''' Constructor for OCUser '''
  1240. # namespace has no meaning for user operations, hardcode to 'default'
  1241. super(OCUser, self).__init__('default', config.kubeconfig)
  1242. self.config = config
  1243. self.groups = groups
  1244. self._user = None
  1245. @property
  1246. def user(self):
  1247. ''' property function user'''
  1248. if not self._user:
  1249. self.get()
  1250. return self._user
  1251. @user.setter
  1252. def user(self, data):
  1253. ''' setter function for user '''
  1254. self._user = data
  1255. def exists(self):
  1256. ''' return whether a user exists '''
  1257. if self.user:
  1258. return True
  1259. return False
  1260. def get(self):
  1261. ''' return user information '''
  1262. result = self._get(self.kind, self.config.username)
  1263. if result['returncode'] == 0:
  1264. self.user = User(content=result['results'][0])
  1265. elif 'users \"%s\" not found' % self.config.username in result['stderr']:
  1266. result['returncode'] = 0
  1267. result['results'] = [{}]
  1268. return result
  1269. def delete(self):
  1270. ''' delete the object '''
  1271. return self._delete(self.kind, self.config.username)
  1272. def create_group_entries(self):
  1273. ''' make entries for user to the provided group list '''
  1274. if self.groups != None:
  1275. for group in self.groups:
  1276. cmd = ['groups', 'add-users', group, self.config.username]
  1277. rval = self.openshift_cmd(cmd, oadm=True)
  1278. if rval['returncode'] != 0:
  1279. return rval
  1280. return rval
  1281. return {'returncode': 0}
  1282. def create(self):
  1283. ''' create the object '''
  1284. rval = self.create_group_entries()
  1285. if rval['returncode'] != 0:
  1286. return rval
  1287. return self._create_from_content(self.config.username, self.config.data)
  1288. def group_update(self):
  1289. ''' update group membership '''
  1290. rval = {'returncode': 0}
  1291. cmd = ['get', 'groups', '-o', 'json']
  1292. all_groups = self.openshift_cmd(cmd, output=True)
  1293. # pylint misindentifying all_groups['results']['items'] type
  1294. # pylint: disable=invalid-sequence-index
  1295. for group in all_groups['results']['items']:
  1296. # If we're supposed to be in this group
  1297. if group['metadata']['name'] in self.groups \
  1298. and (group['users'] is None or self.config.username not in group['users']):
  1299. cmd = ['groups', 'add-users', group['metadata']['name'],
  1300. self.config.username]
  1301. rval = self.openshift_cmd(cmd, oadm=True)
  1302. if rval['returncode'] != 0:
  1303. return rval
  1304. # else if we're in the group, but aren't supposed to be
  1305. elif group['users'] != None and self.config.username in group['users'] \
  1306. and group['metadata']['name'] not in self.groups:
  1307. cmd = ['groups', 'remove-users', group['metadata']['name'],
  1308. self.config.username]
  1309. rval = self.openshift_cmd(cmd, oadm=True)
  1310. if rval['returncode'] != 0:
  1311. return rval
  1312. return rval
  1313. def update(self):
  1314. ''' update the object '''
  1315. rval = self.group_update()
  1316. if rval['returncode'] != 0:
  1317. return rval
  1318. # need to update the user's info
  1319. return self._replace_content(self.kind, self.config.username, self.config.data, force=True)
  1320. def needs_group_update(self):
  1321. ''' check if there are group membership changes '''
  1322. cmd = ['get', 'groups', '-o', 'json']
  1323. all_groups = self.openshift_cmd(cmd, output=True)
  1324. # pylint misindentifying all_groups['results']['items'] type
  1325. # pylint: disable=invalid-sequence-index
  1326. for group in all_groups['results']['items']:
  1327. # If we're supposed to be in this group
  1328. if group['metadata']['name'] in self.groups \
  1329. and (group['users'] is None or self.config.username not in group['users']):
  1330. return True
  1331. # else if we're in the group, but aren't supposed to be
  1332. elif group['users'] != None and self.config.username in group['users'] \
  1333. and group['metadata']['name'] not in self.groups:
  1334. return True
  1335. return False
  1336. def needs_update(self):
  1337. ''' verify an update is needed '''
  1338. skip = []
  1339. if self.needs_group_update():
  1340. return True
  1341. return not Utils.check_def_equal(self.config.data, self.user.yaml_dict, skip_keys=skip, debug=True)
  1342. # pylint: disable=too-many-return-statements
  1343. @staticmethod
  1344. def run_ansible(params, check_mode=False):
  1345. ''' run the idempotent ansible code
  1346. params comes from the ansible portion of this module
  1347. check_mode: does the module support check mode. (module.check_mode)
  1348. '''
  1349. uconfig = UserConfig(params['kubeconfig'],
  1350. params['username'],
  1351. params['full_name'],
  1352. )
  1353. oc_user = OCUser(uconfig, params['groups'],
  1354. verbose=params['debug'])
  1355. state = params['state']
  1356. api_rval = oc_user.get()
  1357. #####
  1358. # Get
  1359. #####
  1360. if state == 'list':
  1361. return {'changed': False, 'results': api_rval['results'], 'state': "list"}
  1362. ########
  1363. # Delete
  1364. ########
  1365. if state == 'absent':
  1366. if oc_user.exists():
  1367. if check_mode:
  1368. return {'changed': False, 'msg': 'Would have performed a delete.'}
  1369. api_rval = oc_user.delete()
  1370. return {'changed': True, 'results': api_rval, 'state': "absent"}
  1371. return {'changed': False, 'state': "absent"}
  1372. if state == 'present':
  1373. ########
  1374. # Create
  1375. ########
  1376. if not oc_user.exists():
  1377. if check_mode:
  1378. return {'changed': False, 'msg': 'Would have performed a create.'}
  1379. # Create it here
  1380. api_rval = oc_user.create()
  1381. if api_rval['returncode'] != 0:
  1382. return {'failed': True, 'msg': api_rval}
  1383. # return the created object
  1384. api_rval = oc_user.get()
  1385. if api_rval['returncode'] != 0:
  1386. return {'failed': True, 'msg': api_rval}
  1387. return {'changed': True, 'results': api_rval, 'state': "present"}
  1388. ########
  1389. # Update
  1390. ########
  1391. if oc_user.needs_update():
  1392. api_rval = oc_user.update()
  1393. if api_rval['returncode'] != 0:
  1394. return {'failed': True, 'msg': api_rval}
  1395. orig_cmd = api_rval['cmd']
  1396. # return the created object
  1397. api_rval = oc_user.get()
  1398. # overwrite the get/list cmd
  1399. api_rval['cmd'] = orig_cmd
  1400. if api_rval['returncode'] != 0:
  1401. return {'failed': True, 'msg': api_rval}
  1402. return {'changed': True, 'results': api_rval, 'state': "present"}
  1403. return {'changed': False, 'results': api_rval, 'state': "present"}
  1404. return {'failed': True,
  1405. 'changed': False,
  1406. 'results': 'Unknown state passed. %s' % state,
  1407. 'state': "unknown"}
  1408. # -*- -*- -*- End included fragment: class/oc_user.py -*- -*- -*-
  1409. # -*- -*- -*- Begin included fragment: ansible/oc_user.py -*- -*- -*-
  1410. def main():
  1411. '''
  1412. ansible oc module for user
  1413. '''
  1414. module = AnsibleModule(
  1415. argument_spec=dict(
  1416. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1417. state=dict(default='present', type='str',
  1418. choices=['present', 'absent', 'list']),
  1419. debug=dict(default=False, type='bool'),
  1420. username=dict(default=None, type='str'),
  1421. full_name=dict(default=None, type='str'),
  1422. # setting groups for user data will not populate the
  1423. # 'groups' field in the user data.
  1424. # it will call out to the group data and make the user
  1425. # entry there
  1426. groups=dict(default=[], type='list'),
  1427. ),
  1428. supports_check_mode=True,
  1429. )
  1430. results = OCUser.run_ansible(module.params, module.check_mode)
  1431. if 'failed' in results:
  1432. module.fail_json(**results)
  1433. module.exit_json(**results)
  1434. if __name__ == '__main__':
  1435. main()
  1436. # -*- -*- -*- End included fragment: ansible/oc_user.py -*- -*- -*-