oc_user.py 61 KB

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