-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from cloudblue/LITE-21972-add-decorators-for-e…
…xtensions LITE-21972 add decorators and extension reflection utils methods
- Loading branch information
Showing
6 changed files
with
357 additions
and
245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
VARIABLES_INFO_ATTR_NAME = '_eaas_variable_info' | ||
EVENT_INFO_ATTR_NAME = '_eaas_event_info' | ||
SCHEDULABLE_INFO_ATTR_NAME = '_eaas_schedulable_info' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
from connect.eaas.core.constants import ( | ||
EVENT_INFO_ATTR_NAME, | ||
SCHEDULABLE_INFO_ATTR_NAME, | ||
VARIABLES_INFO_ATTR_NAME, | ||
) | ||
|
||
|
||
def event(event_type, statuses=None): | ||
def wrapper(func): | ||
setattr( | ||
func, | ||
EVENT_INFO_ATTR_NAME, | ||
{ | ||
'method': func.__name__, | ||
'event_type': event_type, | ||
'statuses': statuses, | ||
}, | ||
) | ||
return func | ||
return wrapper | ||
|
||
|
||
def schedulable(name, description): | ||
def wrapper(func): | ||
setattr( | ||
func, | ||
SCHEDULABLE_INFO_ATTR_NAME, | ||
{ | ||
'method': func.__name__, | ||
'name': name, | ||
'description': description, | ||
}, | ||
) | ||
return func | ||
return wrapper | ||
|
||
|
||
def variables(variables): | ||
def wrapper(cls): | ||
setattr(cls, VARIABLES_INFO_ATTR_NAME, variables) | ||
return cls | ||
return wrapper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
from connect.eaas.core.enums import ResultType | ||
|
||
|
||
class _Response: | ||
def __init__(self, status, output=None): | ||
self.status = status | ||
self.output = output | ||
|
||
@classmethod | ||
def done(cls, *args, **kwargs): | ||
return cls(ResultType.SUCCESS) | ||
|
||
@classmethod | ||
def fail(cls, output=None): | ||
return cls(ResultType.FAIL, output=output) | ||
|
||
|
||
class ProcessingResponse(_Response): | ||
|
||
def __init__(self, status, countdown=30, output=None): | ||
super().__init__(status, output) | ||
self.countdown = 30 if countdown < 30 else countdown | ||
|
||
@classmethod | ||
def skip(cls, output=None): | ||
return cls(ResultType.SKIP, output=output) | ||
|
||
@classmethod | ||
def reschedule(cls, countdown=30): | ||
return cls(ResultType.RESCHEDULE, countdown=countdown) | ||
|
||
@classmethod | ||
def slow_process_reschedule(cls, countdown=300): | ||
return cls( | ||
ResultType.RESCHEDULE, | ||
countdown=300 if countdown < 300 else countdown, | ||
) | ||
|
||
|
||
class ValidationResponse(_Response): | ||
def __init__(self, status, data, output=None): | ||
super().__init__(status, output) | ||
self.data = data | ||
|
||
@classmethod | ||
def done(cls, data): | ||
return cls(ResultType.SUCCESS, data) | ||
|
||
@classmethod | ||
def fail(cls, data=None, output=None): | ||
return cls(ResultType.FAIL, data=data, output=output) | ||
|
||
|
||
class _InteractiveTaskResponse(_Response): | ||
def __init__(self, status, http_status, headers, body, output): | ||
super().__init__(status, output) | ||
self.http_status = http_status | ||
self.headers = headers | ||
self.body = body | ||
|
||
@property | ||
def data(self): | ||
return { | ||
'http_status': self.http_status, | ||
'headers': self.headers, | ||
'body': self.body, | ||
} | ||
|
||
@classmethod | ||
def done(cls, http_status=200, headers=None, body=None): | ||
return cls(ResultType.SUCCESS, http_status, headers, body, None) | ||
|
||
@classmethod | ||
def fail(cls, http_status=400, headers=None, body=None, output=None): | ||
return cls(ResultType.FAIL, http_status, headers, body, output) | ||
|
||
|
||
class CustomEventResponse(_InteractiveTaskResponse): | ||
pass | ||
|
||
|
||
class ProductActionResponse(_InteractiveTaskResponse): | ||
pass | ||
|
||
|
||
class ScheduledExecutionResponse(_Response): | ||
pass |
Oops, something went wrong.