/usr/lib/python3/dist-packages/digitalocean/Action.py is in python3-digitalocean 1.13.2-1.
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 | # -*- coding: utf-8 -*-
from time import sleep
from .baseapi import BaseAPI
class Action(BaseAPI):
def __init__(self, *args, **kwargs):
self.id = None
self.token = None
self.status = None
self.type = None
self.started_at = None
self.completed_at = None
self.resource_id = None
self.resource_type = None
self.region = None
self.region_slug = None
# Custom, not provided by the json object.
self.droplet_id = None
super(Action, self).__init__(*args, **kwargs)
@classmethod
def get_object(cls, api_token, action_id):
"""
Class method that will return a Action object by ID.
"""
action = cls(token=api_token, id=action_id)
action.load_directly()
return action
def load_directly(self):
action = self.get_data("actions/%s" % self.id)
if action:
action = action[u'action']
# Loading attributes
for attr in action.keys():
setattr(self, attr, action[attr])
def load(self):
action = self.get_data(
"droplets/%s/actions/%s" % (
self.droplet_id,
self.id
)
)
if action:
action = action[u'action']
# Loading attributes
for attr in action.keys():
setattr(self, attr, action[attr])
def wait(self, update_every_seconds=1):
"""
Wait until the action is marked as completed or with an error.
It will return True in case of success, otherwise False.
Optional Args:
update_every_seconds - int : number of seconds to wait before
checking if the action is completed.
"""
while self.status == u'in-progress':
sleep(update_every_seconds)
self.load()
return self.status == u'completed'
def __str__(self):
return "<Action: %s %s %s>" % (self.id, self.type, self.status)
|