oc_user.py 60 KB

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