예제 #1
0
파일: __init__.py 프로젝트: rubble/pybble
    def delete(self, pid):
        """
        Deletes the process specified by the PID.

        pid=PID

            A numeric process ID that identifies the process. On success, the
            response is an empty JSON object: {}. If no process exists with the
            specified PID, or if the application isn't allowed to access it, an
            error message is returned:

                {
                    "error": "No such process or unauthorized access"
                }

            Note: the repository file that controls the process will not be
            deleted since it may be of use for other process instances.
        """
        url = urljoin(self.config['url']['api'], 'process')
        request = requests.delete(url,
                                  auth=self.auth,
                                  params={'pid': pid},
                                  **self.config['default_request_kwargs'])

        if request.ok:
            return request.json()
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #2
0
파일: __init__.py 프로젝트: rubble/pybble
    def delete(self, path, **kwargs):
        """
        Delete the file at the given path

        Path parameters

        PATH

            The file's path relative to the root folder of your domain.

        :param path:
        :return:
        """
        params = {}
        params.update(kwargs)

        url = urljoin(self.config['url']['api'], 'file/' + path)
        request = requests.delete(url,
                               auth=self.auth,
                               params=params,
                               **self.config['default_request_kwargs'])

        if request.ok:
                return request
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #3
0
파일: __init__.py 프로젝트: rubble/pybble
    def write(self, path, data, **kwargs):
        """
        Path parameters

            PATH

        The file's path relative to the root folder of your domain.

        Stores new content in the file at PATH. The content-type of the request
        body must be application/octet-stream. The MIME-type of the repository
        file stays the same as it was before. Note: this method is sometimes
        more useful than WebDAV PUT since it bypasses WebDAV locking, which can
        sometimes get stuck for certain clients.

        :param path:
        :return:
        """
        params = {}
        params.update(kwargs)

        request_kwargs = copy.deepcopy(self.config['default_request_kwargs'])
        request_kwargs['headers']['content-type'] = 'application/octet-stream'

        url = urljoin(self.config['url']['api'], 'file/' + path)
        request = requests.put(url,
                               auth=self.auth,
                               data=data,
                               params=params,
                               **request_kwargs)

        if request.ok:
            return True
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #4
0
파일: __init__.py 프로젝트: rubble/pybble
    def list(self):
        """
        Retrieves a list of process IDs and some associated metadata.

        Keyword arguments:

        pidBegin -- A lower limit for the process IDs listed. The default value is 0. For pagination.
        maxItems -- The maximum number of items to return in the list. The default value is 2147483647 (231-1). For pagination.

        The response is a JSON object: {"result":[…]}. Each element of the JSON
        array result is a JSON object: {…}.

        Response:

        pid

            The process ID, as a JSON string.

        domain

            See documentation for process.

        modtime

            See documentation for process.

        type

            This is either rules or script, depending on the process type.

        This web service call is mainly intended for the Rubble administration
        console.
        """
        url = urljoin(self.config['url']['api'], 'processlist')
        request = requests.get(url,
                               auth=self.auth,
                               **self.config['default_request_kwargs'])

        if request.ok:
            return request.json()
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #5
0
파일: __init__.py 프로젝트: rubble/pybble
    def read(self, path, **kwargs):
        """
        Path parameters

        PATH

            The file's path relative to the root folder of your domain.

        Returns the _either_ the contents of the file. The content-type
        is always text/plain.

        :param path:
        :return:
        """
        params = {}
        params.update(kwargs)

        url = urljoin(self.config['url']['api'], 'file/' + path)
        request = requests.get(url,
                               auth=self.auth,
                               params=params,
                               **self.config['default_request_kwargs'])

        if request.ok:

            try:
                request.text.index('Contents of folder')
                resources_type = 'folder'
            except ValueError:
                resources_type = 'file'

            if resources_type is 'file':
                return request.text
            else:
                raise ValueError(
                    ("The path you've requested was a folder "
                     "not a file. Use RubbleFile.list(path) or "
                     "Client.file.list(path) instead")
                )
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #6
0
파일: __init__.py 프로젝트: rubble/pybble
    def update(self, channel, pid):
        """
        Updates the channel alias registry. This method handles both creation,
        updating, and deletion of channel aliases. The request body must have
        content-type application/json and consist of a JSON object.

        Args:

            channel (str): The channel alias
            pid (int):  The process id to set the channel alias to

        Response body properties

        error (optional)

            An error message (a JSON string). This property is omitted if the
            operation was successful.

        Example: If the name foo is registered as an alias for the process ID
        17, then sending a message to the channel foo will be equivalent to
        sending a message to the channel pid(17).

        To create a new alias, use a new name. To delete an existing alias
        entry, specify the process ID "0".
        """

        payload = {
            'channel': channel,
            'pid': str(pid),
        }

        url = urljoin(self.config['url']['api'], 'chanupdate')

        request = requests.post(url,
                                params=payload,
                                **self.config['default_request_kwargs'])

        if request.ok:
            return request.json()
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #7
0
파일: __init__.py 프로젝트: rubble/pybble
    def list(self, **kwargs):
        """Retrieves the list of registered channel aliases.

        Keyword

        includeGlobal=INCLUDEGLOBAL (optional)

            Set this to 1 to include globally scoped channel aliases, common
            for all domains. The default value is 0.

        domain=DOMAIN (optional)

            Set this to * to list only globally scoped channel aliases. Any
            other value of DOMAIN will be ignored.

        skipItems=SKIPITEMS (optional)

            Skip the first SKIPITEMS number of items when creating the list.
            The default value is 0. For pagination.

        maxItems=MAXITEMS (optional)

            The maximum number of items to return in the list. The default
            value is 2147483647 (231-1). For pagination.

        The response is a JSON object: {"result":[…]}. Each element of the JSON
        array result is a JSON object: {…}

        :return:
        """
        params = {}
        params.update(kwargs)
        url = urljoin(self.config['url']['api'], 'chanlist')
        request = requests.get(url, params=params,
                               **self.config['default_request_kwargs'])

        if request.ok:
            return request.json()
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #8
0
파일: __init__.py 프로젝트: rubble/pybble
    def list(self, path, **kwargs):
        """
        Supply a folder path relative to your domain's home directory and it
        will return a list of files.
        :param path:
        :param kwargs:
        :return:
        """
        params = {}
        params.update(kwargs)

        url = urljoin(self.config['url']['api'], 'file/' + path)
        request = requests.get(url,
                               auth=self.auth,
                               params=params,
                               **self.config['default_request_kwargs'])

        if request.ok:

            try:
                request.text.index('Contents of folder')
                resources_type = 'folder'
            except ValueError:
                resources_type = 'file'

            if resources_type is 'folder':
                # Return the multiline folder string as a list, remove the
                # first and last line. The first contains metadata
                # '# Contents of folder:' and the last is a blank line.
                return request.text.split('\r\n')[1:-1]
            else:
                raise ValueError(
                    ("The path you've requested was a file "
                     "not a folder. Use RubbleFile.list(path) or "
                     "Client.file.list(path) instead")
                )
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #9
0
파일: __init__.py 프로젝트: rubble/pybble
    def send(self, terms, pid, **kwargs):
        """Sends a message consisting of JSON-encoded Herbrand terms to the
        designated channel.

        Parameters
        ----------

        terms: str or list
            Rubble facts or more generally Herbrand terms.  See appendix A in
            module docstring.

        channel: str, optional
            Identifies the recipient process by it's registered
            channel name

        pid: int, optional
            Identifies the recipient process by it's process ID.

        when: datetime, optional
            When to deliver the message.

        For a description of the JSON Rubble format, see Appendix A,
        JSON-encoded Rubble facts.

        The response is an empty JSON object {} on success, or
        {"error":"MESSAGE"} if an error occurred. Note: success only
        means that the message was successfully enqueued. Due to the
        asynchronous nature of message sending, some errors may occur
        after the API response has been committed.
        """

        # create the payload and update with kwargs, channel is represented
        # by the string pid(N) where N is the numeric process ID
        params = {
            'channel': 'pid(%s)' % pid
        }

        # URL arguement uses hyphens, but hyphens cannot be used in
        # dict keys.
        if 'wrap_input_from' in kwargs:
            params['wrap-input-from'] = kwargs['wrap_input_from']
            del kwargs['wrap_input_from']

        # Expect a datetime object, convert it to milliseconds
        # since epoch
        if 'when' in kwargs:
            if type(kwargs['when']) is not datetime.datetime:
                raise ValueError("""The keyword 'when' must be a datetime
                object.
                """)

            kwargs['when'] = self.datetime_to_epoch(kwargs['when'])
            params['when'] = kwargs['when']

        if 'pid' in kwargs:
            params['channel'] = 'pid(%d)' % kwargs['channel']

        params.update(kwargs)

        # join the api url to the method call
        url = urljoin(self.config['url']['api'], 'send')

        request = requests.post(url,
                                auth=self.auth,
                                json=terms,
                                params=params,
                                **self.config['default_request_kwargs'])

        if request.ok:
            return request.json()
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #10
0
파일: __init__.py 프로젝트: rubble/pybble
    def update(self, rulesref, pid, **kwargs):
        """
        Updates a Rubble process. The request body must have content-type
        application/json and consist of a JSON object.

        Arguments
        ---------

        pid

            The process ID of the process to update. Note: this must
            be a JSON string (of digits), not a JSON number.

        rulesref

            See docstring for processcreate.

        Keyword arguements
        ------------------

        factsformat (optional)

            See documentation for processcreate.

        facts (optional)

            See documentation for processcreate.

        trapstate (optional)

            See documentation for processcreate.

        Note: the optional properties are defaulted in the same
        way as for processcreate, i.e. they are not defaulted to
        their stored values.

        The response is an empty JSON object {} on success, or
        {"error":"Unauthorized access"} if the caller didn't have
        permission.

        """

        payload = {
            "pid": str(pid),
            "rulesref": rulesref,
        }

        # add kwargs as params to the payload
        payload.update(**kwargs)

        # join the api url to the method call
        url = urljoin(self.config['url']['api'], 'processupdate')

        request = requests.post(url,
                                auth=self.auth,
                                json=payload,
                                **self.config['default_request_kwargs'])

        if request.ok:
            return request.json()
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #11
0
파일: __init__.py 프로젝트: rubble/pybble
    def create(self, rulesref, **kwargs):
        """
        Creates a new Rubble process. The request body must have
        content-type application/json and consist of a JSON object.

        Keyword arguements
        -----------------------

        rulesref

            A string that specifies the rule file that contains
            the Rubble code which controls this process. This string should
            have either the format file:/PATH or the format
            file://DOMAIN/PATH. For compatibility with RFC 3986 the variant
            for var in collection:
            mat file:///PATH is accepted as equivalent to the single-slash
            format.

        factsformat (optional)

            Specifies the storage format of the Rubble process state for
            this process. If provided, this property is either one of the
            strings native, xml, json, or the number 1 or 2. The
            alternatives xml or 2 cause the facts to be stored internally
            in XML format and require the facts property to be supplied as
            a string containing the initial XML code. The alternatives
            native or 1 cause the facts to be stored internally in Rubble
            native format and require the facts property to be supplied as
            a string containing the initial Rubble code. The alternative
            json causes the facts to be stored internally in Rubble native
            format and requires the facts property to be supplied as a
            JSON array (see Appendix A, JSON-encoded Rubble facts). The
            default value for factsformat is json.

        facts (optional)

            The initial process state, in the syntax specified by
            factsformat. The default syntax is a JSON array (see Appendix
            A, JSON-encoded Rubble facts). The default value is an empty
            set of facts. An empty string is always legal here, in the XML
            case it will be automatically converted into the empty root
            element <rubble/>.

        trapstate (optional)

            An optional string containing an XML document that represents
            any exceptional processing state. If this string is omitted or
            left blank, normal processing will be assumed. See
            documentation of process for details. This property is
            typically omitted at process creation.

        The response is a JSON object.

        Response body properties
        ------------------------

        pid

            The process ID of the newly created process. Note: this is a
            JSON string (of digits), not a JSON number.

        """

        payload = {
            'rulesref': rulesref,
        }

        # add kwargs as params to the payload
        payload.update(kwargs)

        # join the api url to the method call
        url = urljoin(self.config['url']['api'], 'processcreate')

        request = requests.post(url,
                                auth=self.auth,
                                json=payload,
                                **self.config['default_request_kwargs'])

        if request.ok:
            return request.json()
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #12
0
파일: __init__.py 프로젝트: rubble/pybble
    def get(self, pid, prettyprint=True, **kwargs):
        """
        Retrieves a process. The response is a JSON object: {"content":{…}} on
        success, or {"error":"MESSAGE"} if no process with the specified pid
        exists or if the caller isn't allowed to access it.

        Arguments
        ---------

        pid: int

            A numeric process ID that identifies the process.

        prettyprint: boolean, optional

            False retrieves the process state exactly as stored in the
            database, and true prettyprints the process state data after
            retrieval, for prettier display in the browser
            interface. This feature is still a bit rudimentary.

        Returns
        -------

        pid: int

            For convenience. Same as the query parameter PID. The
            process ID of the newly created process. Note: this is a
            JSON string (of digits), not a JSON number.

        modtime: int

            Time of last modification. This is a time coordinate,
            approximately the number of milliseconds since 00:00:00
            UTC on January 1, 1970. Note: this is a JSON number, not a
            string.

        domain: str

            The domain of this process. For a non-privileged
            application this is always the same as the caller's
            authenticated domain.

        rulesref: str

            See documentation for processcreate.

        factsformat: list

            See documentation for processcreate.

        facts: list

            See documentation for processcreate.

        trapstate (optional)

            An optional string containing an XML document that
            represents any exceptional processing state. See below for
            an explanation of this XML document.

        Example of a response body:

            {
              "content":
              {
                "pid":"4711",
                "modtime":1367237523740,
                "domain":"acme",
                "rulesref":"file:/foo.rubble",
                "factsformat":1,
                "facts":"empty(glass); empty(wallet); full(moon);"
              }
            }

        If no process exists with the specified PID, or if the application
        isn't allowed to access it, an error message is returned:

            {
                "error": "No such process or unauthorized access"
            }

        Example of a trapstate property value:

            <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
            <trapstate>
                <timestamp>1368101400107</timestamp>
                <cause>ERROR</cause>
                <description>Inference failure: CONTRADICTION crazy_fact</description>
                <triggering-message>input(pid(42),crazy_fact);</triggering-message>
                <reschedule-delay>60000</reschedule-delay>
                <discard-after>172800000</discard-after>
            </trapstate>

        The above example describes a process rule execution that was aborted
        due to detection of a logical contradiction. No more messages will be
        received by this process instance until the trapstate has been cleared,
        or unless a specified condition holds. Any messages not received by
        this process while the trapstate is non-null will be delayed by the
        number of milliseconds specified by <reschedule-delay>. If
        <discard-after> milliseconds have passed since the time specified by
        <timestamp>, the message will be silently discarded instead.

        The value of the <cause> element determines how execution proceeds.

        Possible values of <cause>

        ERROR

            Set by syntax errors and exceptions during rule execution.

        PAUSED

            Set intentionally when there is a need to pause further processing
            for this process instance, for administrative or debugging reasons.

        PAUSE-ON-CONDITION

            Used for debugging. Execution proceeds normally despite trapstate
            being non-null, but at the end of each process-state transition a
            logical condition is evaluated. If this condition is true, the
            trapstate <cause> is changed to PAUSED, stopping further execution.
            The logical condition is specified by a fragment of Rubble code in
            the element <pause-condition> in the trapstate.

        The element <triggering-message> contains the fact terms of the input
        message that caused the trap. Native Rubble syntax is used for these
        terms. This is for display & debugging only. Any changes made to this
        data are ignored, it's only a copy of the pending message stored in the
        message queue.

        """
        params = {
            "pid": str(pid),
            "prettyprint": 1 if prettyprint else 0,
        }

        # add kwargs as params to the payload
        params.update(kwargs)

        # join the api url to the method call
        url = urljoin(self.config['url']['api'], 'process')

        request = requests.get(url,
                               auth=self.auth,
                               params=params,
                               **self.config['default_request_kwargs'])

        if request.ok:
            return request.json()
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #13
0
파일: __init__.py 프로젝트: rubble/pybble
    def call(self, terms, pid, **kwargs):
        """Synchronously sends a message consisting of Herbrand terms to
        a designated channel.

        Parameters
        ----------

        terms: list or dict
            Rubble facts or more generally Herbrand terms. See appendix A in
            class docstring.

        channel: str, optional
            Identifies the recipient process by it's registered
            channel name

        pid: int, optional
            Identifies the recipient process by it's process ID.

        wrap_input_from: str, optional
            Identifies the sender to the receiving process. If supplied, every
            term X in the message payload is wrapped as input(FROM,X). This is
            useful if the receiving process has rules with conditions on
            input/2 terms. It is mandatory to use this when doing cross-domain
            messaging, for security reasons. The pseudo-channel default is
            always an acceptable value for FROM.

        Returns
        -------
        response: dict or request
            A dict converted from the JSON object. {"output":[…]} on success, or
            {"error":"MESSAGE"} if an error occurred. The request will be returned
            if there is an error actually making the request

        If the rules triggered by this message results in new outgoing
        messages to the pseudo-channel default, the terms in these
        messages are delivered to the client in the response property
        output, encoded as a JSON array.

        The message is not enqueued, but rather bypasses any pending
        enqueued messages and is delivered in the same transaction as
        the request.
        """

        # create the payload and update with kwargs, channel is represented
        # by the string pid(N) where N is the numeric process ID
        params = {
            'channel': 'pid(%s)' % pid
        }

        # URL arguement uses hyphens, but hyphens cannot be used in
        # dict keys.
        if 'wrap_input_from' in kwargs:
            params['wrap-input-from'] = kwargs['wrap_input_from']
            del kwargs['wrap_input_from']

        if 'pid' in kwargs:
            params['channel'] = 'pid(%d)' % kwargs['pid']
            del kwargs['pid']

        if 'pid' and 'channel' in kwargs:
            raise ValueError("""Ambiguous. Either use either a PID or a channel
            alias to select the channel to call to. Not both.
            """)

        params.update(kwargs)

        # join the api url to the method call
        url = urljoin(self.config['url']['api'],
                      'call?channel={channel}'.format(**params), True)

        request = requests.post(url,
                                auth=self.auth,
                                json=terms,
                                **self.config['default_request_kwargs'])

        if request.ok:
            return request.json()
        else:
            raise RubbleServerException(error_string_from_request(request))
예제 #14
0
파일: __init__.py 프로젝트: rubble/pybble
    def translate(self, string, macro_file, **kwargs):
        """
        Match a given string against a babylon macro file and in return receive the
        Rubble code, associated with that string. When specifying which macro_file to
        target, i.e. for babylon/todolist-macros.xml, enter "todolist-macros";
        don't include the filename suffix or path prefix.

        Query parameters

            debug=DEBUG (optional)

        If debug=1, the generated Rubble code will contain some debugging
        information in comments before each snippet of generated code. The
        default value is 0.

        The content-type of the request body must be text/plain. Example:

            Format: babylon/foo.xml

            This could be a babylon rule.

            This could be another babylon rule.

        The Format line is mandatory and specifies the macro file to use for
        translation, in this case babylon/foo.xml relative to the repository
        root of the caller's domain. Each babylon rule is then separated from
        the preceding content via one or more empty lines. Whitespace within a
        rule will be collapsed into single spaces. Rule content is case
        insensitive unless the macro file specifies case sensitivity.

        The response always has content-type text/plain. It consists of the
        translated Rubble code. It is not stored anywhere automatically, this
        must be done as a separate operation.

        Note: to specify a macro file in some other domain, simply prepend
        /NAME/ to the Format path, where NAME is the name of the other domain.
        :param kwargs:
        :return:
        """
        params = {}
        params.update(kwargs)

        url = urljoin(self.config['url']['api'], 'babylon-translate')

        data = """Format: babylon/{macro_file}.xml

        {string}
        """.format(macro_file=macro_file, string=string)

        request_kwargs = copy.deepcopy(self.config['default_request_kwargs'])
        request_kwargs['headers']['content-type'] = "text/plain"

        request = requests.post(url,
                                auth=self.auth,
                                data=data,
                                params=params,
                                **request_kwargs)

        if not request.ok:
            raise RubbleServerException(error_string_from_request(request))

        if request.text.find("TRANSLATION ERROR") is not -1:
            print("No template match this input: {}".format(string),
                  file=sys.stderr)

        return request.text