Exemplo n.º 1
0
    def get(self, **kwargs):
        """
        Args:
            website (list of int)
            campaign (list of int)
            search (str)
            reason (int)
            date_start (date)
            date_end (date)
            limit (int)
            offset (int)

        """
        filtering = {
            'filter_by': kwargs,
            'available': {
                'website': lambda x: Item.sanitize_integer_array(x, 'website', blank=True),
                'campaign': lambda x: Item.sanitize_integer_array(x, 'campaign', blank=True),
                'search': lambda x: Item.sanitize_string_value(x, 'search', blank=True),
                'reason': lambda x: Item.sanitize_integer_value(x, 'reason', blank=True),
                'date_start': lambda x: Item.sanitize_date(x, 'date_start', blank=True),
                'date_end': lambda x: Item.sanitize_date(x, 'date_end', blank=True),
            }
        }

        return self.transport.get() \
                   .set_pagination(**kwargs) \
                   .set_filtering(filtering) \
                   .request(url=self.URL)
Exemplo n.º 2
0
class StatisticKeywords(StatisticBase):
    """
    Statistics by keywords

    """

    SCOPE = 'statistics'

    ORDERING = (
        'actions',
        'clicks',
        'cr',
        'ecpc',
        'keyword',
        'leads',
        'payment_sum',
        'payment_sum_approved',
        'payment_sum_declined',
        'payment_sum_open',
        'sales',
        'source',
    )

    FILTERING = {
        'date_start':
        lambda x: Item.sanitize_date(x, 'date_start', blank=True),
        'date_end':
        lambda x: Item.sanitize_date(x, 'date_end', blank=True),
        'website':
        lambda x: Item.sanitize_integer_value(x, 'website', blank=True),
        'campaign':
        lambda x: Item.sanitize_integer_value(x, 'campaign', blank=True),
        'source':
        StatisticBase.check_sources,
    }

    URL = Item.prepare_url('statistics/keywords')

    def get(self, **kwargs):
        """
        Args:
            date_start (date)
            date_end (date)
            website (int)
            campaign (int)
            source (str)
            limit (int)
            offset (int)
            order_by (list of str)

        """
        return super(StatisticKeywords, self).get(self.URL, **kwargs)
Exemplo n.º 3
0
    def test_sanitize_date(self):
        self.assertEqual(Item.sanitize_date(None, '', True), None)
        self.assertEqual(Item.sanitize_date(datetime(2020, 1, 1), '', False), '01.01.2020')
        self.assertEqual(Item.sanitize_date(date(2020, 1, 1), '', False), '01.01.2020')
        self.assertEqual(Item.sanitize_date('01.01.2020', '', False), '01.01.2020')

        with self.assertRaises(ValueError):
            Item.sanitize_date(None, '', False)
            Item.sanitize_date('01/01/2020', '', True)
Exemplo n.º 4
0
    def get(self, **kwargs):
        """
        Args:
            date_start (date)
            date_end (date)
            limit (int)
            offset (int)

        """
        filtering = {
            'filter_by': kwargs,
            'available': {
                'date_start': lambda x: Item.sanitize_date(x, 'date_start', True),
                'date_end': lambda x: Item.sanitize_date(x, 'date_end', True)
            }
        }

        return self.transport.get() \
                   .set_pagination(**kwargs) \
                   .set_filtering(filtering) \
                   .request(url=self.URL)
Exemplo n.º 5
0
    def get(self, **kwargs):
        """
        Args:
            website (list of int)
            campaign (list of int)
            search (str)
            reason (int)
            date_start (date)
            date_end (date)
            limit (int)
            offset (int)

        """
        filtering = {
            'filter_by': kwargs,
            'available': {
                'website':
                lambda x: Item.sanitize_integer_array(x, 'website', blank=True
                                                      ),
                'campaign':
                lambda x: Item.sanitize_integer_array(
                    x, 'campaign', blank=True),
                'search':
                lambda x: Item.sanitize_string_value(x, 'search', blank=True),
                'reason':
                lambda x: Item.sanitize_integer_value(x, 'reason', blank=True),
                'date_start':
                lambda x: Item.sanitize_date(x, 'date_start', blank=True),
                'date_end':
                lambda x: Item.sanitize_date(x, 'date_end', blank=True),
            }
        }

        return self.transport.get() \
                   .set_pagination(**kwargs) \
                   .set_filtering(filtering) \
                   .request(url=self.URL)
Exemplo n.º 6
0
class LostOrdersManager(Item):

    SCOPE = 'manage_lost_orders'

    DELETE_URL = Item.prepare_url('lost_orders/%(lost_order_id)s/decline')
    CREATE_URL = Item.prepare_url('lost_orders/create')
    UPDATE_URL = Item.prepare_url('lost_orders/%(lost_order_id)s/update')

    CREATE_FIELDS = {
        'campaign': lambda x: Item.sanitize_integer_value(x, 'campaign'),
        'website': lambda x: Item.sanitize_integer_value(x, 'website'),
        'order_id': lambda x: Item.sanitize_string_value(x, 'order_id'),
        'order_date': lambda x: Item.sanitize_date(x, 'order_date'),
        'order_price': lambda x: Item.sanitize_float_value(x, 'order_price'),
        'comment': lambda x: Item.sanitize_string_value(x, 'comment'),
        'appeal_id': lambda x: Item.sanitize_string_value(x, 'appeal_id'),
    }

    def delete(self, lost_order_id):
        """
        Args:
            lost_order_id (int)

        """
        request_data = {
            'url': self.DELETE_URL,
            'lost_order_id': Item.sanitize_id(lost_order_id),
        }

        return self.transport.delete().request(**request_data)

    def create(self, attachments, **kwargs):
        """
        Args:
            attachments (list of str)
            campaign (int)
            website (int)
            order_id (str)
            order_date (date)
            order_price (float)
            appeal_id (str)
            comment (str)

        """
        data = Item.sanitize_fields(self.CREATE_FIELDS, **kwargs)
        files = [('attachment', open(item, 'rb')) for item in Item.sanitize_string_array(attachments, 'attachments')]

        return self.transport.post().set_data(data).set_files(files).request(url=self.CREATE_URL)

    def update(self, lost_order_id, appeal_status):
        """
        Args:
            lost_order_id (int)
            appeal_status (str)

        """
        request_data = {
            'url': self.UPDATE_URL,
            'lost_order_id': Item.sanitize_id(lost_order_id),
        }

        data = {
            'appeal_status': self.sanitize_string_value(appeal_status, 'appeal_status'),
        }

        return self.transport.put().set_data(data).request(**request_data)
Exemplo n.º 7
0
class StatisticSubIds(StatisticBase):
    """
    Statistics by sub-ids

    """

    SCOPE = 'statistics'

    SUB_ID_NUMBERS = range(0, 5)

    ORDERING = ('actions', 'clicks', 'cr', 'ecpc', 'leads', 'payment_sum',
                'payment_sum_approved', 'payment_sum_declined',
                'payment_sum_open', 'sales')

    FILTERING = {
        'date_start':
        lambda x: Item.sanitize_date(x, 'date_start', blank=True),
        'date_end':
        lambda x: Item.sanitize_date(x, 'date_end', blank=True),
        'website':
        lambda x: Item.sanitize_integer_value(x, 'website', blank=True),
        'campaign':
        lambda x: Item.sanitize_integer_value(x, 'campaign', blank=True),
    }

    URL = Item.prepare_url('statistics/sub_ids%(subid_number)s')

    def sanitize_sub_id_number(self, number):
        if number not in self.SUB_ID_NUMBERS:
            raise ValueError("Invalid subid number. '%s': %s" %
                             (number, self.SUB_ID_NUMBERS))

    def prepare_filtering(self, sub_id_number):
        params = copy(self.FILTERING)
        subid_params = dict([
            ('subid%s' % (val or ''), StatisticBase.check_sub_id)
            for val in self.SUB_ID_NUMBERS if val != sub_id_number
        ])
        params.update(subid_params)
        return params

    def prepare_ordering(self, sub_id_number):
        sub_id_name = 'subid%s' % (sub_id_number or '')
        return self.ORDERING + (sub_id_name, )

    def get(self, sub_id_number=0, **kwargs):
        """
        Here sub_id_number is subid number.
        It is allowed from 0 to 5 excluding.
        It just will send request to sub_ids, sub_ids1, sub_ids2,
         sub_ids3, sub_ids4 urls correspondingly.

        res = client.StatisticSubIds.get()
        res = client.StatisticSubIds.get(date_start='01.01.2013')
        res = client.StatisticSubIds.get(subid="ADS778")
        res = client.StatisticSubIds.get(subid1="ADS778", sub_id_number=2)
        res = client.StatisticSubIds.get(limit=2)

        """
        self.sanitize_sub_id_number(sub_id_number)
        kwargs['url'] = self.URL % {'subid_number': sub_id_number or ''}

        ordering = {
            'order_by': kwargs.get('order_by', []),
            'available': self.prepare_ordering(sub_id_number)
        }

        filtering = {
            'filter_by': kwargs,
            'available': self.prepare_filtering(sub_id_number)
        }

        return self.transport.get() \
                   .set_pagination(**kwargs) \
                   .set_ordering(ordering) \
                   .set_filtering(filtering) \
                   .request(**kwargs)
Exemplo n.º 8
0
class StatisticActions(StatisticBase):
    """
    Statistics by actions

    """

    SCOPE = 'statistics'

    ORDERING = ('action', 'banner', 'banner_id', 'campaign', 'cart',
                'click_date', 'conv_time', 'datetime', 'payment', 'status',
                'subid', 'subid1', 'subid2', 'subid3', 'subid4', 'website')

    FILTERING = {
        'date_start':
        lambda x: Item.sanitize_date(x, 'date_start', blank=True),
        'date_end':
        lambda x: Item.sanitize_date(x, 'date_end', blank=True),
        'closing_date_start':
        lambda x: Item.sanitize_date(x, 'closing_date_start', blank=True),
        'closing_date_end':
        lambda x: Item.sanitize_date(x, 'closing_date_end', blank=True),
        'status_updated_start':
        lambda x: Item.sanitize_long_date(
            x, 'status_updated_start', blank=True),
        'status_updated_end':
        lambda x: Item.sanitize_long_date(x, 'status_updated_end', blank=True),
        'website':
        lambda x: Item.sanitize_integer_value(x, 'website', blank=True),
        'campaign':
        lambda x: Item.sanitize_integer_value(x, 'campaign', blank=True),
        'subid':
        lambda x: StatisticBase.check_sub_id(x),
        'subid1':
        lambda x: StatisticBase.check_sub_id(x),
        'subid2':
        lambda x: StatisticBase.check_sub_id(x),
        'subid3':
        lambda x: StatisticBase.check_sub_id(x),
        'subid4':
        lambda x: StatisticBase.check_sub_id(x),
        'source':
        lambda x: StatisticBase.check_sources(x),
        'status':
        lambda x: StatisticBase.check_status(x),
        'keyword':
        lambda x: Item.sanitize_string_value(x, 'keyword', blank=True),
        'action':
        lambda x: Item.sanitize_string_value(x, 'action', blank=True),
        'action_type':
        lambda x: StatisticBase.check_actions_type(x),
        'action_id':
        lambda x: Item.sanitize_integer_value(x, 'action_id', blank=True),
    }

    URL = Item.prepare_url('statistics/actions')

    def get(self, **kwargs):
        """
        Args:
            date_start (date)
            date_end (date)
            closing_date_start (date)
            closing_date_end (date)
            status_updated_start (date)
            status_updated_end (date)
            website (int)
            campaign (int)
            subid (str)
            subid1 (str)
            subid2 (str)
            subid3 (str)
            subid4 (str)
            source (str)
            status (int)
            keyword (str)
            action (str)
            action_type (str)
            action_id (int)
            limit (int)
            offset (int)
            order_by (list of int)

        """
        return super(StatisticActions, self).get(self.URL, **kwargs)
Exemplo n.º 9
0
class StatisticBase(Item):

    STATUSES = (1, 2, 3)
    SOURCES = ('g', 'y')
    ACTION_TYPES = ('lead', 'sale')

    ORDERING = (
        'action',
        'clicks',
        'cr',
        'ctr',
        'ecpc',
        'ecpm',
        'leads',
        'name',
        'payment_sum',
        'payment_sum_approved',
        'payment_sum_declined',
        'payment_sum_open',
        'sales',
        'views',
    )

    @staticmethod
    def check_sub_id(sub_id):
        return sub_id if len(sub_id) <= MAX_SUB_ID_LENGTH else None

    @staticmethod
    def check_sources(source):
        return source if source in StatisticBase.SOURCES else None,

    @staticmethod
    def check_status(status):
        return status if status in StatisticBase.STATUSES else None,

    @staticmethod
    def check_actions_type(action_type):
        return action_type if action_type in StatisticBase.ACTION_TYPES else None,

    FILTERING = {
        'date_start':
        lambda x: Item.sanitize_date(x, 'date_start', blank=True),
        'date_end':
        lambda x: Item.sanitize_date(x, 'date_end', blank=True),
        'website':
        lambda x: Item.sanitize_integer_value(x, 'website', blank=True),
        'campaign':
        lambda x: Item.sanitize_integer_value(x, 'campaign', blank=True),
        'total':
        lambda x: Item.sanitize_integer_value(x, 'total', blank=True),
        'subid':
        lambda x: StatisticBase.check_sub_id(x)
    }

    def get(self, url, **kwargs):
        """Base GET method"""
        kwargs['url'] = url

        ordering = {
            'order_by': kwargs.get('order_by', []),
            'available': self.ORDERING
        }

        filtering = {
            'filter_by': kwargs,
            'available': self.FILTERING,
        }

        return self.transport.get() \
                   .set_pagination(**kwargs) \
                   .set_ordering(ordering) \
                   .set_filtering(filtering) \
                   .request(**kwargs)