/usr/lib/python2.7/dist-packages/dcos/marathon.py is in python-dcos 0.2.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 | import json
from distutils.version import LooseVersion
from dcos import http, util
from dcos.errors import DCOSException, DCOSHTTPException
from six.moves import urllib
logger = util.get_logger(__name__)
def create_client(config=None):
"""Creates a Marathon client with the supplied configuration.
:param config: configuration dictionary
:type config: config.Toml
:returns: Marathon client
:rtype: dcos.marathon.Client
"""
if config is None:
config = util.get_config()
marathon_url = _get_marathon_url(config)
timeout = config.get('core.timeout', http.DEFAULT_TIMEOUT)
logger.info('Creating marathon client with: %r', marathon_url)
return Client(marathon_url, timeout=timeout)
def _get_marathon_url(config):
"""
:param config: configuration dictionary
:type config: config.Toml
:returns: marathon base url
:rtype: str
"""
marathon_url = config.get('marathon.url')
if marathon_url is None:
dcos_url = util.get_config_vals(['core.dcos_url'], config)[0]
marathon_url = urllib.parse.urljoin(dcos_url, 'marathon/')
return marathon_url
def _to_exception(response):
"""
:param response: HTTP response object or Exception
:type response: requests.Response | Exception
:returns: An exception with the message from the response JSON
:rtype: Exception
"""
if response.status_code == 400:
msg = 'Error on request [{0} {1}]: HTTP {2}: {3}'.format(
response.request.method,
response.request.url,
response.status_code,
response.reason)
# Marathon is buggy and sometimes return JSON, and sometimes
# HTML. We only include the error message if it's JSON.
try:
json_msg = response.json()
msg += ':\n' + json.dumps(json_msg,
indent=2,
sort_keys=True,
separators=(',', ': '))
except ValueError:
pass
return DCOSException(msg)
elif response.status_code == 409:
return DCOSException(
'App or group is locked by one or more deployments. '
'Override with --force.')
try:
response_json = response.json()
except Exception:
logger.exception(
'Unable to decode response body as a JSON value: %r',
response)
return DCOSException(
'Error decoding response from [{0}]: HTTP {1}: {2}'.format(
response.request.url, response.status_code, response.reason))
message = response_json.get('message')
if message is None:
errs = response_json.get('errors')
if errs is None:
logger.error(
'Marathon server did not return a message: %s',
response_json)
return DCOSException(_default_marathon_error())
msg = '\n'.join(error['error'] for error in errs)
return DCOSException(_default_marathon_error(msg))
return DCOSException('Error: {}'.format(message))
def _http_req(fn, *args, **kwargs):
"""Make an HTTP request, and raise a marathon-specific exception for
HTTP error codes.
:param fn: function to call
:type fn: function
:param args: args to pass to `fn`
:type args: [object]
:param kwargs: kwargs to pass to `fn`
:type kwargs: dict
:returns: `fn` return value
:rtype: object
"""
try:
return fn(*args, **kwargs)
except DCOSHTTPException as e:
raise _to_exception(e.response)
class Client(object):
"""Class for talking to the Marathon server.
:param marathon_url: the base URL for the Marathon server
:type marathon_url: str
"""
def __init__(self, marathon_url, timeout=http.DEFAULT_TIMEOUT):
self._base_url = marathon_url
self._timeout = timeout
min_version = "0.8.1"
version = LooseVersion(self.get_about()["version"])
self._version = version
if version < LooseVersion(min_version):
msg = ("The configured Marathon with version {0} is outdated. " +
"Please use version {1} or later.").format(
version,
min_version)
raise DCOSException(msg)
def _create_url(self, path):
"""Creates the url from the provided path.
:param path: url path
:type path: str
:returns: constructed url
:rtype: str
"""
return urllib.parse.urljoin(self._base_url, path)
def get_version(self):
"""Get marathon version
:returns: marathon version
rtype: LooseVersion
"""
return self._version
def get_about(self):
"""Returns info about Marathon instance
:returns Marathon information
:rtype: dict
"""
url = self._create_url('v2/info')
response = _http_req(http.get, url, timeout=self._timeout)
return response.json()
def get_app(self, app_id, version=None):
"""Returns a representation of the requested application version. If
version is None the return the latest version.
:param app_id: the ID of the application
:type app_id: str
:param version: application version as a ISO8601 datetime
:type version: str
:returns: the requested Marathon application
:rtype: dict
"""
app_id = self.normalize_app_id(app_id)
if version is None:
url = self._create_url('v2/apps{}'.format(app_id))
else:
url = self._create_url(
'v2/apps{}/versions/{}'.format(app_id, version))
response = _http_req(http.get, url, timeout=self._timeout)
# Looks like Marathon return different JSON for versions
if version is None:
return response.json()['app']
else:
return response.json()
def get_groups(self):
"""Get a list of known groups.
:returns: list of known groups
:rtype: list of dict
"""
url = self._create_url('v2/groups')
response = _http_req(http.get, url, timeout=self._timeout)
return response.json()['groups']
def get_group(self, group_id, version=None):
"""Returns a representation of the requested group version. If
version is None the return the latest version.
:param group_id: the ID of the application
:type group_id: str
:param version: application version as a ISO8601 datetime
:type version: str
:returns: the requested Marathon application
:rtype: dict
"""
group_id = self.normalize_app_id(group_id)
if version is None:
url = self._create_url('v2/groups{}'.format(group_id))
else:
url = self._create_url(
'v2/groups{}/versions/{}'.format(group_id, version))
response = _http_req(http.get, url, timeout=self._timeout)
return response.json()
def get_app_versions(self, app_id, max_count=None):
"""Asks Marathon for all the versions of the Application up to a
maximum count.
:param app_id: the ID of the application or group
:type app_id: str
:param id_type: type of the id ("apps" or "groups")
:type app_id: str
:param max_count: the maximum number of version to fetch
:type max_count: int
:returns: a list of all the version of the application
:rtype: [str]
"""
if max_count is not None and max_count <= 0:
raise DCOSException(
'Maximum count must be a positive number: {}'.format(max_count)
)
app_id = self.normalize_app_id(app_id)
url = self._create_url('v2/apps{}/versions'.format(app_id))
response = _http_req(http.get, url, timeout=self._timeout)
if max_count is None:
return response.json()['versions']
else:
return response.json()['versions'][:max_count]
def get_apps(self):
"""Get a list of known applications.
:returns: list of known applications
:rtype: [dict]
"""
url = self._create_url('v2/apps')
response = _http_req(http.get, url, timeout=self._timeout)
return response.json()['apps']
def add_app(self, app_resource):
"""Add a new application.
:param app_resource: application resource
:type app_resource: dict, bytes or file
:returns: the application description
:rtype: dict
"""
url = self._create_url('v2/apps')
# The file type exists only in Python 2, preventing type(...) is file.
if hasattr(app_resource, 'read'):
app_json = json.load(app_resource)
else:
app_json = app_resource
response = _http_req(http.post, url,
json=app_json,
timeout=self._timeout)
return response.json()
def _update(self, resource_id, payload, force=None, url_endpoint="apps"):
"""Update an application or group.
:param resource_id: the app or group id
:type resource_id: str
:param payload: the json payload
:type payload: dict
:param force: whether to override running deployments
:type force: bool
:param url_endpoint: resource type to update ("apps" or "groups")
:type url_endpoint: str
:returns: the resulting deployment ID
:rtype: str
"""
resource_id = self.normalize_app_id(resource_id)
if not force:
params = None
else:
params = {'force': 'true'}
url = self._create_url('v2/{}{}'.format(url_endpoint, resource_id))
response = _http_req(http.put, url,
params=params,
json=payload,
timeout=self._timeout)
return response.json().get('deploymentId')
def update_app(self, app_id, payload, force=None):
"""Update an application.
:param app_id: the application id
:type app_id: str
:param payload: the json payload
:type payload: dict
:param force: whether to override running deployments
:type force: bool
:returns: the resulting deployment ID
:rtype: str
"""
return self._update(app_id, payload, force)
def update_group(self, group_id, payload, force=None):
"""Update a group.
:param group_id: the group id
:type group_id: str
:param payload: the json payload
:type payload: dict
:param force: whether to override running deployments
:type force: bool
:returns: the resulting deployment ID
:rtype: str
"""
return self._update(group_id, payload, force, "groups")
def scale_app(self, app_id, instances, force=None):
"""Scales an application to the requested number of instances.
:param app_id: the ID of the application to scale
:type app_id: str
:param instances: the requested number of instances
:type instances: int
:param force: whether to override running deployments
:type force: bool
:returns: the resulting deployment ID
:rtype: str
"""
app_id = self.normalize_app_id(app_id)
if not force:
params = None
else:
params = {'force': 'true'}
url = self._create_url('v2/apps{}'.format(app_id))
response = _http_req(http.put,
url,
params=params,
json={'instances': int(instances)},
timeout=self._timeout)
deployment = response.json()['deploymentId']
return deployment
def scale_group(self, group_id, scale_factor, force=None):
"""Scales a group with the requested scale-factor.
:param group_id: the ID of the group to scale
:type group_id: str
:param scale_factor: the requested value of scale-factor
:type scale_factor: float
:param force: whether to override running deployments
:type force: bool
:returns: the resulting deployment ID
:rtype: bool
"""
group_id = self.normalize_app_id(group_id)
if not force:
params = None
else:
params = {'force': 'true'}
url = self._create_url('v2/groups{}'.format(group_id))
response = http.put(url,
params=params,
json={'scaleBy': scale_factor},
timeout=self._timeout)
deployment = response.json()['deploymentId']
return deployment
def stop_app(self, app_id, force=None):
"""Scales an application to zero instances.
:param app_id: the ID of the application to stop
:type app_id: str
:param force: whether to override running deployments
:type force: bool
:returns: the resulting deployment ID
:rtype: bool
"""
return self.scale_app(app_id, 0, force)
def remove_app(self, app_id, force=None):
"""Completely removes the requested application.
:param app_id: the ID of the application to remove
:type app_id: str
:param force: whether to override running deployments
:type force: bool
:rtype: None
"""
app_id = self.normalize_app_id(app_id)
if not force:
params = None
else:
params = {'force': 'true'}
url = self._create_url('v2/apps{}'.format(app_id))
_http_req(http.delete, url, params=params, timeout=self._timeout)
def remove_group(self, group_id, force=None):
"""Completely removes the requested application.
:param group_id: the ID of the application to remove
:type group_id: str
:param force: whether to override running deployments
:type force: bool
:rtype: None
"""
group_id = self.normalize_app_id(group_id)
if not force:
params = None
else:
params = {'force': 'true'}
url = self._create_url('v2/groups{}'.format(group_id))
_http_req(http.delete, url, params=params, timeout=self._timeout)
def restart_app(self, app_id, force=None):
"""Performs a rolling restart of all of the tasks.
:param app_id: the id of the application to restart
:type app_id: str
:param force: whether to override running deployments
:type force: bool
:returns: the deployment id and version
:rtype: dict
"""
app_id = self.normalize_app_id(app_id)
if not force:
params = None
else:
params = {'force': 'true'}
url = self._create_url('v2/apps{}/restart'.format(app_id))
response = _http_req(http.post, url,
params=params,
timeout=self._timeout)
return response.json()
def get_deployment(self, deployment_id):
"""Returns a deployment.
:param deployment_id: the deployment id
:type deployment_id: str
:returns: a deployment
:rtype: dict
"""
url = self._create_url('v2/deployments')
response = _http_req(http.get, url, timeout=self._timeout)
deployment = next(
(deployment for deployment in response.json()
if deployment_id == deployment['id']),
None)
return deployment
def get_deployments(self, app_id=None):
"""Returns a list of deployments, optionally limited to an app.
:param app_id: the id of the application
:type app_id: str
:returns: a list of deployments
:rtype: list of dict
"""
url = self._create_url('v2/deployments')
response = _http_req(http.get, url, timeout=self._timeout)
if app_id is not None:
app_id = self.normalize_app_id(app_id)
deployments = [
deployment for deployment in response.json()
if app_id in deployment['affectedApps']
]
else:
deployments = response.json()
return deployments
def _cancel_deployment(self, deployment_id, force):
"""Cancels an application deployment.
:param deployment_id: the deployment id
:type deployment_id: str
:param force: if set to `False`, stop the deployment and
create a new rollback deployment to reinstate the
previous configuration. If set to `True`, simply stop the
deployment.
:type force: bool
:returns: cancelation deployment
:rtype: dict
"""
if not force:
params = None
else:
params = {'force': 'true'}
url = self._create_url('v2/deployments/{}'.format(deployment_id))
response = _http_req(http.delete, url,
params=params,
timeout=self._timeout)
if force:
return None
else:
return response.json()
def rollback_deployment(self, deployment_id):
"""Rolls back an application deployment.
:param deployment_id: the deployment id
:type deployment_id: str
:returns: cancelation deployment
:rtype: dict
"""
return self._cancel_deployment(deployment_id, False)
def stop_deployment(self, deployment_id):
"""Stops an application deployment.
:param deployment_id: the deployment id
:type deployment_id: str
:rtype: None
"""
self._cancel_deployment(deployment_id, True)
def get_tasks(self, app_id):
"""Returns a list of tasks, optionally limited to an app.
:param app_id: the id of the application to restart
:type app_id: str
:returns: a list of tasks
:rtype: [dict]
"""
url = self._create_url('v2/tasks')
response = _http_req(http.get, url, timeout=self._timeout)
if app_id is not None:
app_id = self.normalize_app_id(app_id)
tasks = [
task for task in response.json()['tasks']
if app_id == task['appId']
]
else:
tasks = response.json()['tasks']
return tasks
def get_task(self, task_id):
"""Returns a task
:param task_id: the id of the task
:type task_id: str
:returns: a tasks
:rtype: dict
"""
url = self._create_url('v2/tasks')
response = _http_req(http.get, url, timeout=self._timeout)
task = next(
(task for task in response.json()['tasks']
if task_id == task['id']),
None)
return task
def get_app_schema(self):
"""Returns app json schema
:returns: application json schema
:rtype: json schema or None if endpoint doesn't exist
"""
version = self.get_version()
schema_version = LooseVersion("0.9.0")
if version < schema_version:
return None
url = self._create_url('v2/schemas/app')
response = _http_req(http.get, url, timeout=self._timeout)
return response.json()
def normalize_app_id(self, app_id):
"""Normalizes the application id.
:param app_id: raw application ID
:type app_id: str
:returns: normalized application ID
:rtype: str
"""
return urllib.parse.quote('/' + app_id.strip('/'))
def create_group(self, group_resource):
"""Add a new group.
:param group_resource: grouplication resource
:type group_resource: dict, bytes or file
:returns: the group description
:rtype: dict
"""
url = self._create_url('v2/groups')
# The file type exists only in Python 2, preventing type(...) is file.
if hasattr(group_resource, 'read'):
group_json = json.load(group_resource)
else:
group_json = group_resource
response = _http_req(http.post, url,
json=group_json,
timeout=self._timeout)
return response.json()
def get_leader(self):
""" Get the leading marathon instance.
:returns: string of the form <ip>:<port>
:rtype: str
"""
url = self._create_url('v2/leader')
response = _http_req(http.get, url, timeout=self._timeout)
return response.json()['leader']
def _default_marathon_error(message=""):
"""
:param message: additional message
:type message: str
:returns: marathon specific error message
:rtype: str
"""
return ("Marathon likely misconfigured. Please check your proxy or "
"Marathon URL settings. See dcos config --help. {}").format(
message)
|