2014-08-27 03:08:39 +00:00
|
|
|
# Copyright 2014 seahub authors
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2014-08-28 02:21:28 +00:00
|
|
|
from common.common import BASE_URL, USERNAME, PASSWORD, IS_PRO
|
2014-08-27 03:08:39 +00:00
|
|
|
import requests, re
|
|
|
|
|
2014-08-27 15:40:52 +00:00
|
|
|
BASE_URL = BASE_URL
|
2014-08-27 09:13:05 +00:00
|
|
|
PING_URL = BASE_URL + u'/api2/ping/'
|
|
|
|
TOKEN_URL = BASE_URL + u'/api2/auth-token/'
|
|
|
|
AUTH_PING_URL = BASE_URL + u'/api2/auth/ping/'
|
2014-08-27 03:08:39 +00:00
|
|
|
|
2014-08-27 15:40:52 +00:00
|
|
|
ACCOUNTS_URL = BASE_URL + u'/api2/accounts/'
|
2014-08-27 18:45:58 +00:00
|
|
|
ACCOUNT_INFO_URL = BASE_URL + u'/api2/account/info/'
|
|
|
|
USERMSGS_URL = BASE_URL + u'/api2/user/msgs/' + USERNAME + u'/'
|
|
|
|
USERMSGS_COUNT_URL = BASE_URL + u'/api2/unseen_messages/'
|
|
|
|
GROUP_URL = BASE_URL + u'/api2/group/'
|
|
|
|
GROUPS_URL = BASE_URL + u'/api2/groups/'
|
|
|
|
GROUPMSGS_URL = BASE_URL + u'/api2/group/msgs/'
|
|
|
|
GROUPMSGS_NREPLY_URL = BASE_URL + u'/api2/new_replies/'
|
2014-08-28 02:01:16 +00:00
|
|
|
AVATAR_BASE_URL = BASE_URL + u'/api2/avatars/'
|
2014-08-27 18:45:58 +00:00
|
|
|
|
|
|
|
STARREDFILES_URL = BASE_URL + u'/api2/starredfiles/'
|
2014-08-27 15:40:52 +00:00
|
|
|
|
2014-08-28 02:21:28 +00:00
|
|
|
MISC_LIST_GROUP_AND_CONTACTS_URL = BASE_URL + u'/api2/groupandcontacts/'
|
|
|
|
MISC_LIST_EVENTS_URL = BASE_URL + u'/api2/events/'
|
|
|
|
|
2014-08-27 03:08:39 +00:00
|
|
|
META_AUTH = {'username': USERNAME, 'password': PASSWORD}
|
|
|
|
|
2014-08-27 09:13:05 +00:00
|
|
|
def get_auth_token():
|
2014-08-27 03:08:39 +00:00
|
|
|
res = requests.post(TOKEN_URL, data=META_AUTH)
|
|
|
|
if (res.status_code != 200):
|
|
|
|
return None
|
|
|
|
token = res.json()['token']
|
|
|
|
if (re.match(r'(\w){40,40}', token) == None):
|
|
|
|
return None
|
|
|
|
return token
|
|
|
|
|
2014-08-27 15:40:52 +00:00
|
|
|
_token = get_auth_token()
|
|
|
|
if (_token != None):
|
|
|
|
_instance = requests.Session()
|
|
|
|
_instance.headers.update({'Authorization': 'Token ' + _token})
|
|
|
|
else:
|
|
|
|
_instance = None
|
|
|
|
|
2014-08-27 09:13:05 +00:00
|
|
|
def get_authed_instance():
|
2014-08-27 15:40:52 +00:00
|
|
|
return _instance
|
|
|
|
|