Esempio n. 1
0
    class ProcessSchema(ma.ModelSchema):
        class Meta:
            model = models.Process
            fields = ('id', 'path', '_links')

        _links = ma.Hyperlinks({
            'self': ma.URLFor('show_processes', id='<id>'),
        })
Esempio n. 2
0
    class SupervisorSchema(ma.ModelSchema):
        class Meta:
            model = models.Supervisor
            fields = ('id', 'hostname', 'watch_dir', '_links')

        _links = ma.Hyperlinks({
            'self': ma.URLFor('show_supervisors', id='<id>'),
            'collection': ma.URLFor('show_supervisors')
        })
Esempio n. 3
0
class ConsoleSchema(ma.ModelSchema):
    class Meta:
        model = models.ConsolePage
        fields = ('id', 'timestamp', 'text', 'process', '_links')

    class ProcessSchema(ma.ModelSchema):
        class Meta:
            model = models.Process
            fields = ('id', 'path', '_links')

        _links = ma.Hyperlinks({
            'self': ma.URLFor('show_processes', id='<id>'),
        })

    process = ma.Nested(ProcessSchema)

    _links = ma.Hyperlinks({
        'self': ma.URLFor('show_console', id='<process_id>', page_id='<id>'),
        'collection': ma.URLFor('show_console', id='<process_id>')
    })
Esempio n. 4
0
class EndpointSchema(ma.ModelSchema):
    class Meta:
        model = models.Endpoint
        fields = ('id', 'protocol', 'address', 'process', '_links')

    class ProcessSchema(ma.ModelSchema):
        class Meta:
            model = models.Process
            fields = ('id', 'path', '_links')

        _links = ma.Hyperlinks({
            'self': ma.URLFor('show_processes', id='<id>'),
        })

    process = ma.Nested(ProcessSchema)

    _links = ma.Hyperlinks({
        'self': ma.URLFor(
            'show_endpoints', id='<process_id>', endpoint_id='<id>'),
        'collection': ma.URLFor('show_endpoints', id='<process_id>')
    })
Esempio n. 5
0
class SupervisorSchema(ma.ModelSchema):
    class Meta:
        model = models.Supervisor
        fields = ('id', 'hostname', 'watch_dir', 'started',
                  'processes', '_links')

    class ProcessSchema(ma.ModelSchema):
        class Meta:
            model = models.Process
            fields = ('id', 'path', '_links')

        _links = ma.Hyperlinks({
            'self': ma.URLFor('show_processes', id='<id>'),
        })

    processes = ma.Nested(ProcessSchema, many=True)

    _links = ma.Hyperlinks({
        'self': ma.URLFor('show_supervisors', id='<id>'),
        'collection': ma.URLFor('show_supervisors')
    })
Esempio n. 6
0
class ProcessSchema(ma.ModelSchema):
    class Meta:
        model = models.Process
        fields = ('id', 'path', 'runtime', 'memory', 'cpu', 'files',
                  'exits', 'changes', 'last_update', 'update_interval',
                  'endpoints', 'supervisor', 'console_pages', '_links')

    class EndpointsSchema(ma.ModelSchema):
        class Meta:
            fields = ('count', '_links')

        count = marshmallow.fields.Method('get_count')
        _links = marshmallow.fields.Method('get_links')

        def get_count(self, endpoints):
            return len(endpoints)

        def get_links(self, endpoints):
            if endpoints:
                return {
                    'self': flask.url_for(
                        'show_endpoints', id=endpoints[0].process_id)
                }

            else:
                return {}

    endpoints = ma.Nested(EndpointsSchema)

    class ConsoleSchema(ma.ModelSchema):
        class Meta:
            model = models.ConsolePage
            fields = ('count', 'last_update', '_links')

        count = marshmallow.fields.Method('get_count')
        last_update = marshmallow.fields.Method('get_last_update')
        _links = marshmallow.fields.Method('get_links')

        def get_count(self, console_pages):
            return len(console_pages)

        def get_last_update(self, console_pages):
            if console_pages:
                return console_pages[-1].timestamp.isoformat() + '+00:00'

            return 0

        def get_links(self, console_pages):
            if console_pages:
                return {
                    'self': flask.url_for(
                        'show_console', id=console_pages[0].process_id)
                }

            else:
                return {}

    console_pages = ma.Nested(ConsoleSchema)

    class SupervisorSchema(ma.ModelSchema):
        class Meta:
            model = models.Supervisor
            fields = ('id', 'hostname', 'watch_dir', '_links')

        _links = ma.Hyperlinks({
            'self': ma.URLFor('show_supervisors', id='<id>'),
            'collection': ma.URLFor('show_supervisors')
        })

    supervisor = ma.Nested(SupervisorSchema)

    _links = ma.Hyperlinks({
        'self': ma.URLFor('show_processes', id='<id>'),
        'collection': ma.URLFor('show_processes')
    })