oc_user.py 59 KB

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