Source code for highton.call_mixins.list_comment_call_mixin

from highton.call_mixins import Call
from highton import fields


class ListCommentCallMixin(Call):
    """
    A mixin to get all comments of inherited class
    These could be: notes || emails

    """

    COMMENT_OFFSET = 25

    def list_comments(self, page=0):
        """
        Get the comments of current object

        :param page: the page starting at 0
        :return: the emails
        :rtype: list
        """
        from highton.models.comment import Comment
        params = {'page': int(page) * self.COMMENT_OFFSET}

        return fields.ListField(
            name=self.ENDPOINT,
            init_class=Comment
        ).decode(
            self.element_from_string(
                self._get_request(
                    endpoint=self.ENDPOINT + '/' + str(self.id) + '/' + Comment.ENDPOINT,
                    params=params
                ).text
            )
        )