oc_user.py 61 KB

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