2018-06-30 01:25:46 +00:00
|
|
|
# -*- mode: python; coding: utf-8 -*-
|
2018-04-20 18:10:45 +00:00
|
|
|
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
# quelques clics.
|
|
|
|
#
|
2018-06-17 01:06:58 +00:00
|
|
|
# Copyright © 2018 Maël Kervella
|
2018-04-20 18:10:45 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
2018-06-17 01:06:58 +00:00
|
|
|
"""Settings specific to the API.
|
2018-04-20 18:10:45 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
# RestFramework config for API
|
|
|
|
REST_FRAMEWORK = {
|
|
|
|
'URL_FIELD_NAME': 'api_url',
|
|
|
|
'DEFAULT_AUTHENTICATION_CLASSES': (
|
2018-04-21 19:48:33 +00:00
|
|
|
'api.authentication.ExpiringTokenAuthentication',
|
2018-04-20 18:10:45 +00:00
|
|
|
'rest_framework.authentication.SessionAuthentication',
|
|
|
|
),
|
|
|
|
'DEFAULT_PERMISSION_CLASSES': (
|
2018-06-13 22:39:37 +00:00
|
|
|
'api.permissions.AutodetectACLPermission',
|
2018-04-26 18:41:13 +00:00
|
|
|
),
|
2018-05-24 23:02:39 +00:00
|
|
|
'DEFAULT_PAGINATION_CLASS': 'api.pagination.PageSizedPagination',
|
2018-04-26 18:41:13 +00:00
|
|
|
'PAGE_SIZE': 100
|
2018-04-20 18:10:45 +00:00
|
|
|
}
|
2018-04-20 22:09:33 +00:00
|
|
|
|
|
|
|
# API permission settings
|
|
|
|
API_CONTENT_TYPE_APP_LABEL = 'api'
|
|
|
|
API_CONTENT_TYPE_MODEL = 'api'
|
|
|
|
API_PERMISSION_NAME = 'Can use the API'
|
|
|
|
API_PERMISSION_CODENAME = 'use_api'
|
2018-04-21 19:48:33 +00:00
|
|
|
|
|
|
|
# Activate token authentication
|
|
|
|
API_APPS = (
|
|
|
|
'rest_framework.authtoken',
|
|
|
|
)
|
2018-06-17 01:06:58 +00:00
|
|
|
|
|
|
|
# The expiration time for an authentication token
|
2018-04-21 19:48:33 +00:00
|
|
|
API_TOKEN_DURATION = 86400 # 24 hours
|