mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
9fffb491f9
Summary: Adds a Python function `REQUEST` which makes an HTTP GET request. Behind the scenes it: - Raises a special exception to stop trying to evaluate the current cell and just keep the existing value. - Notes the request arguments which will be returned by `apply_user_actions`. - Makes the actual request in NodeJS, which sends back the raw response data in a new action `RespondToRequests` which reevaluates the cell(s) that made the request. - Wraps the response data in a class which mimics the `Response` class of the `requests` library. In certain cases, this asynchronous flow doesn't work and the sandbox will instead synchronously call an exported JS method: - When reevaluating a single cell to get a formula error, the request is made synchronously. - When a formula makes multiple requests, the earlier responses are retrieved synchronously from files which store responses as long as needed to complete evaluating formulas. See https://grist.slack.com/archives/CL1LQ8AT0/p1653399747810139 Test Plan: Added Python and nbrowser tests. Reviewers: georgegevoian Reviewed By: georgegevoian Subscribers: paulfitz, dsagal Differential Revision: https://phab.getgrist.com/D3429
109 lines
4.1 KiB
Python
109 lines
4.1 KiB
Python
"""
|
|
This module defines ActionGroup, ActionEnvelope, and ActionBundle -- classes that together
|
|
represent the result of applying a UserAction to a document.
|
|
|
|
In general, UserActions refer to logical actions performed by the user. DocActions are the
|
|
individual steps to which UserActions translate.
|
|
|
|
A list of UserActions applied together translates to multiple DocActions, packaged into an
|
|
ActionGroup. In a separate step, this ActionGroup is split up according to ACL rules into and
|
|
ActionBundle consisting of ActionEnvelopes, each containing a smaller set of actions associated
|
|
with the set of recipients who should receive them.
|
|
"""
|
|
import actions
|
|
from action_summary import ActionSummary
|
|
|
|
class ActionGroup(object):
|
|
"""
|
|
ActionGroup packages different types of doc actions for returning them to the instance.
|
|
|
|
The ActionGroup stores actions produced by the engine in the course of processing one or more
|
|
UserActions, plus an array of return values, one for each UserAction.
|
|
"""
|
|
def __init__(self):
|
|
self.calc = []
|
|
self.stored = []
|
|
self.direct = []
|
|
self.undo = []
|
|
self.retValues = []
|
|
self.summary = ActionSummary()
|
|
self.requests = {}
|
|
|
|
def flush_calc_changes(self):
|
|
"""
|
|
Merge the changes from self.summary into self.stored and self.undo, and clear the summary.
|
|
"""
|
|
length_before = len(self.stored)
|
|
self.summary.convert_deltas_to_actions(self.stored, self.undo)
|
|
count = len(self.stored) - length_before
|
|
self.direct += [False] * count
|
|
self.summary = ActionSummary()
|
|
|
|
def flush_calc_changes_for_column(self, table_id, col_id):
|
|
"""
|
|
Merge the changes for the given column from self.summary into self.stored and self.undo, and
|
|
remove that column from the summary.
|
|
"""
|
|
length_before = len(self.stored)
|
|
self.summary.pop_column_delta_as_actions(table_id, col_id, self.stored, self.undo)
|
|
count = len(self.stored) - length_before
|
|
self.direct += [False] * count
|
|
|
|
def check_sanity(self):
|
|
if len(self.stored) != len(self.direct):
|
|
raise AssertionError("failed to track origin of actions")
|
|
|
|
def get_repr(self):
|
|
return {
|
|
"calc": [actions.get_action_repr(a) for a in self.calc],
|
|
"stored": [actions.get_action_repr(a) for a in self.stored],
|
|
"undo": [actions.get_action_repr(a) for a in self.undo],
|
|
"direct": self.direct,
|
|
"retValues": self.retValues
|
|
}
|
|
|
|
@classmethod
|
|
def from_json_obj(cls, data):
|
|
ag = ActionGroup()
|
|
ag.calc = [actions.action_from_repr(a) for a in data.get('calc', [])]
|
|
ag.stored = [actions.action_from_repr(a) for a in data.get('stored', [])]
|
|
ag.undo = [actions.action_from_repr(a) for a in data.get('undo', [])]
|
|
ag.retValues = data.get('retValues', [])
|
|
return ag
|
|
|
|
|
|
class Envelope(object):
|
|
"""
|
|
Envelope contains information about recipients as a set (or frozenset) of instanceIds.
|
|
"""
|
|
def __init__(self, recipient_set):
|
|
self.recipients = recipient_set
|
|
|
|
def to_json_obj(self):
|
|
return {"recipients": sorted(self.recipients)}
|
|
|
|
class ActionBundle(object):
|
|
"""
|
|
ActionBundle contains actions arranged into envelopes, i.e. split up by sets of recipients.
|
|
Note that different Envelopes contain different sets of recipients (which may overlap however).
|
|
"""
|
|
def __init__(self):
|
|
self.envelopes = []
|
|
self.stored = [] # Pairs of (envIndex, docAction)
|
|
self.direct = [] # Pairs of (envIndex, boolean)
|
|
self.calc = [] # Pairs of (envIndex, docAction)
|
|
self.undo = [] # Pairs of (envIndex, docAction)
|
|
self.retValues = []
|
|
self.rules = set() # RowIds of ACLRule records used to construct this ActionBundle.
|
|
|
|
def to_json_obj(self):
|
|
return {
|
|
"envelopes": [e.to_json_obj() for e in self.envelopes],
|
|
"stored": [(env, actions.get_action_repr(a)) for (env, a) in self.stored],
|
|
"direct": self.direct,
|
|
"calc": [(env, actions.get_action_repr(a)) for (env, a) in self.calc],
|
|
"undo": [(env, actions.get_action_repr(a)) for (env, a) in self.undo],
|
|
"retValues": self.retValues,
|
|
"rules": sorted(self.rules)
|
|
}
|