oc_user.py 59 KB

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