forked from HypnoTherapist/ebay
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ebay.py
162 lines (135 loc) · 6.33 KB
/
ebay.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
## -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import os
import sys
import logging
from datetime import datetime, timedelta
import time
from openerp import pooler, tools
from openerp.osv import fields, osv, orm
from openerp.tools.translate import _
import base64
import urllib2
import json
from jinja2 import Template
from ebay_utils import *
import ebaysdk
from ebaysdk.trading import Connection as Trading
from ebaysdk.exception import ConnectionError, ConnectionResponseError
from requests.exceptions import RequestException
_logger = logging.getLogger(__name__)
class ebay_ebay(orm.TransientModel):
_name = "ebay.ebay"
_description = "eBay"
_columns = {
'method': fields.char('Method', readonly=True),
'exception': fields.text('Exception', readonly=True),
}
_site_id_domainname_dict = {
'0': 'ebay.com',
'1': 'ebay.de',
'2': 'ebay.ca',
'3': 'ebay.co.uk',
'15': 'ebay.au',
'201': 'ebay.hk',
}
def _get_domainname_by_site_id(self, cr, uid, site_id, context=None):
return self._site_id_domainname_dict.get(site_id, self._site_id_domainname_dict['0'])
def get_ebay_sign_in_url(self, cr, uid, site_id, sandbox, ru_name, session_id, context=None):
url = ''
if sandbox:
url = 'https://signin.sandbox.ebay.com/ws/eBayISAPI.dll?SignIn&runame=%s&SessID=%s' % (ru_name, session_id)
else:
url = 'https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&runame=%s&SessID=%s' % (ru_name, session_id)
return url
def get_ebay_api_domain(self, cr, uid, site_id, sandbox, context=None):
url = ''
domainname = self._get_domainname_by_site_id(self, cr, uid, site_id)
if sandbox:
url = 'api.sandbox.ebay.com'
else:
url = 'api.ebay.com'
return url
def get_auth_user(self, cr, uid, sandbox_user_included, context=None):
ebay_user_obj = self.pool.get('ebay.user')
domain = [('ownership', '=', True), ('ebay_auth_token', '!=', False)]
if not sandbox_user_included:
domain.append(('sandbox', '=', False))
ids = ebay_user_obj.search(cr, uid, domain, context=context)
if not ids:
raise orm.except_orm(_('Warning!'), _('Can not find an authorized user'))
return ebay_user_obj.browse(cr, uid, ids, context=context)
def get_arbitrary_auth_user(self, cr, uid, sandbox, context=None):
ebay_user_obj = self.pool.get('ebay.user')
ids = ebay_user_obj.search(cr, uid,
[('sandbox', '=', sandbox), ('ownership', '=', True), ('ebay_auth_token', '!=', False)], context=context)
if not ids:
raise orm.except_orm(_('Warning!'), _('Can not find an authorized user'))
return ebay_user_obj.browse(cr, uid, ids[0], context=context)
def trading(self, cr, uid, user, call_name, parallel=None, context=None):
api = Trading(domain=self.pool.get('ebay.ebay').get_ebay_api_domain(cr, uid, user.sale_site, user.sandbox), parallel=parallel)
if user.ownership:
api.config.set('appid', user.app_id, force=True)
api.config.set('devid', user.dev_id, force=True)
api.config.set('certid', user.cert, force=True)
if parallel:
api.config.set('errors', False, force=True)
if call_name not in ('GetSessionID', 'FetchToken'):
token = ''
if user.ownership and user.ebay_auth_token:
api.config.set('token', user.ebay_auth_token, force=True)
else:
auth_user = self.get_arbitrary_auth_user(cr, uid, user.sandbox, context)
api.config.set('appid', auth_user.app_id, force=True)
api.config.set('devid', auth_user.dev_id, force=True)
api.config.set('certid', auth_user.cert, force=True)
api.config.set('token', auth_user.ebay_auth_token, force=True)
return api
def call(self, cr, uid, user, call_name, call_data=dict(), error_msg='', files=None, context=None):
try:
api = self.trading(cr, uid, user, call_name, context=context)
api.execute(call_name, call_data)
except ConnectionError as e:
raise orm.except_orm(_('Warning!'), _('%s: %s' % (error_msg, e)))
except ConnectionResponseError as e:
raise orm.except_orm(_('Warning!'), _('%s: %s' % (error_msg, e)))
except RequestException as e:
raise orm.except_orm(_('Warning!'), _('%s: %s' % (error_msg, e)))
else:
return api
def exception(self, cr, uid, method, exception, context=None):
id = self.create(cr, uid, {'method': method, 'exception': exception}, context=context)
return {
'name': "eBay Api Exception",
'type': 'ir.actions.act_window',
'res_model': 'ebay.ebay',
'view_mode': 'form',
'view_type': 'form',
'res_id': id,
'views': [(False, 'form')],
'target': 'new',
}
def get_ebay_official_time(self, cr, uid, user, context=None):
api = self.call(cr, uid, user, 'GeteBayOfficialTime', error_msg='GeteBayOfficialTime', context=context)
ebay_dump(api)
now = datetime.now()
print 'local time now: ', now, now.isoformat()
ebay_ebay()