Skip to content

Commit ca4210d

Browse files
Added private API to get all rooms for connected apps
1 parent b1e4581 commit ca4210d

15 files changed

+115
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('application', '0006_historicalapplication'),
11+
]
12+
13+
operations = [
14+
migrations.AddField(
15+
model_name='application',
16+
name='private_scopes',
17+
field=models.CharField(help_text=b'Private API scopes', max_length=256, null=True, blank=True),
18+
),
19+
migrations.AddField(
20+
model_name='historicalapplication',
21+
name='private_scopes',
22+
field=models.CharField(help_text=b'Private API scopes', max_length=256, null=True, blank=True),
23+
),
24+
]

application/models.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class Application(AbstractApplication):
3737
required_scopes = models.CharField(max_length=256,
3838
help_text='Default non-tracking permissions. '
3939
'Valid only if application is anonymous', null=True, blank=True)
40+
private_scopes = models.CharField(max_length=256, help_text='Private API scopes', null=True, blank=True)
4041
website = models.URLField(null=True, blank=True)
4142
privacy_policy = models.URLField(null=True, blank=True, help_text='Link of privacy policy of application')
4243
created_on = models.DateTimeField(auto_now_add=True)

application/views.py

+3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ def form_valid(self, form):
3636
scopes = form.cleaned_data.get('scope', '')
3737
scopes = set(scopes.split(' '))
3838
scopes.update(set(get_default_scopes(application)))
39+
private_scopes = application.private_scopes
40+
private_scopes = set(private_scopes.split(' '))
41+
scopes.update(private_scopes)
3942
scopes = ' '.join(list(scopes))
4043
form.cleaned_data['scope'] = scopes
4144
return super(CustomAuthorizationView, self).form_valid(form)

core/pagination.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from rest_framework import pagination
2+
3+
4+
class DefaultLimitOffsetPagination(pagination.LimitOffsetPagination):
5+
6+
default_limit = 20
7+
max_limit = 500

resources/__init__.py

Whitespace-only changes.

resources/admin.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

resources/migrations/__init__.py

Whitespace-only changes.

resources/models.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

resources/serializers.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from rest_framework import serializers
2+
3+
from user_resource.models import InstituteAddress
4+
5+
6+
class UserRoomSerializer(serializers.ModelSerializer):
7+
roll_number = serializers.CharField(source='user.userprofile.roll_number')
8+
9+
class Meta:
10+
model = InstituteAddress
11+
exclude = ['id', 'user']

resources/tests.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.test import TestCase
2+
3+
# Create your tests here.

resources/urls.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from django.conf.urls import include, url
2+
from rest_framework.routers import DefaultRouter
3+
4+
from .views import ResourcesViewset
5+
6+
router = DefaultRouter()
7+
router.register('resources', ResourcesViewset, base_name='resources')
8+
9+
urlpatterns = [
10+
url('^api/', include(router.urls, namespace='api')),
11+
]

resources/views.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from oauth2_provider.ext.rest_framework.permissions import TokenHasScope
2+
from rest_framework import viewsets
3+
4+
from core.pagination import DefaultLimitOffsetPagination
5+
from user_resource.models import InstituteAddress
6+
from .serializers import UserRoomSerializer
7+
from rest_framework.decorators import list_route
8+
9+
10+
class ResourcesViewset(viewsets.GenericViewSet):
11+
12+
pagination_class = DefaultLimitOffsetPagination
13+
permission_classes = [TokenHasScope]
14+
required_scopes = ['priv_rooms']
15+
16+
@list_route(methods=['GET'], serializer_class=UserRoomSerializer)
17+
def rooms(self, request):
18+
queryset = InstituteAddress.objects.all().order_by('id').prefetch_related('user__userprofile')
19+
queryset = self.paginate_queryset(queryset)
20+
serialized_queryset = self.serializer_class(queryset, many=True)
21+
return self.get_paginated_response(serialized_queryset.data)

sso/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
}
7272

7373
INSTALLED_APPS = (
74-
'jet',
7574
'django.contrib.admin',
7675
'django.contrib.auth',
7776
'django.contrib.contenttypes',
@@ -190,6 +189,7 @@
190189
'program': 'Your roll number, department, course, joining year and graduation year',
191190
'secondary_emails': 'Your alternate emails',
192191
'send_mail': 'Send email to you via SSO',
192+
'priv_rooms': 'Private API: Get details all rooms',
193193
},
194194
'OAUTH2_VALIDATOR_CLASS': 'application.validators.CustomOAuth2Validator',
195195
'REQUEST_APPROVAL_PROMPT': 'auto',

sso/urls.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
import account.urls
2626
import application.urls
27+
import resources.urls
2728
import user_resource.urls
2829
import widget.urls
2930

@@ -33,13 +34,13 @@
3334
url(r'^$', IndexView.as_view(), name='index'),
3435
url(r'^doc/$', DocView.as_view(), name='doc'),
3536
url(r'^doc/(?P<tab>[\w-]+\w+)/$', DocView.as_view(), name='doc'),
36-
url(r'^jet/', include(jet.urls, namespace='jet')),
3737
url(r'^admin/', include(admin.site.urls)),
3838
url(r'^oauth/', include(application.urls, namespace='oauth')),
3939
url(r'^oauth/', include(oauth2_provider.urls, namespace='oauth2_provider')),
4040
url(r'^account/', include(account.urls, namespace='account')),
4141
url(r'^user/', include(user_resource.urls, namespace='user')),
42-
url(r'^widget/', include(widget.urls, namespace='widgets'))
42+
url(r'^resources/', include(resources.urls, namespace='resources')),
43+
url(r'^widget/', include(widget.urls, namespace='widgets')),
4344
]
4445

4546
# Fail safe! If nginx is down, this might come handy.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('user_resource', '0010_historicalcontactnumber_historicalinstituteaddress_historicalprogram_historicalsecondaryemail'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='historicalinstituteaddress',
16+
name='hostel',
17+
field=models.CharField(blank=True, max_length=8, null=True, choices=[[b'1', b'Hostel 1'], [b'2', b'Hostel 2'], [b'3', b'Hostel 3'], [b'4', b'Hostel 4'], [b'5', b'Hostel 5'], [b'6', b'Hostel 6'], [b'7', b'Hostel 7'], [b'8', b'Hostel 8'], [b'9', b'Hostel 9'], [b'10', b'Hostel 10'], [b'11', b'Hostel 11'], [b'12', b'Hostel 12'], [b'13', b'Hostel 13'], [b'14', b'Hostel 14'], [b'15', b'Hostel 15'], [b'16', b'Hostel 16'], [b'tansa', b'Tansa'], [b'qip', b'QIP']]),
18+
),
19+
migrations.AlterField(
20+
model_name='instituteaddress',
21+
name='hostel',
22+
field=models.CharField(blank=True, max_length=8, null=True, choices=[[b'1', b'Hostel 1'], [b'2', b'Hostel 2'], [b'3', b'Hostel 3'], [b'4', b'Hostel 4'], [b'5', b'Hostel 5'], [b'6', b'Hostel 6'], [b'7', b'Hostel 7'], [b'8', b'Hostel 8'], [b'9', b'Hostel 9'], [b'10', b'Hostel 10'], [b'11', b'Hostel 11'], [b'12', b'Hostel 12'], [b'13', b'Hostel 13'], [b'14', b'Hostel 14'], [b'15', b'Hostel 15'], [b'16', b'Hostel 16'], [b'tansa', b'Tansa'], [b'qip', b'QIP']]),
23+
),
24+
]

0 commit comments

Comments
 (0)