from django.contrib.sites.models import Site from django.contrib.auth.decorators import login_required from django.conf.urls.defaults import patterns, include, url from django.shortcuts import render_to_response, get_object_or_404 from django.contrib.admin.views.decorators import staff_member_required from django.http import HttpResponse, Http404, HttpResponseServerError, HttpResponseRedirect, HttpResponsePermanentRedirect from models import UserProfile from trullo import API class UserProfileResource(ModelResource): class Meta: queryset = UserProfile.objects.all() allowed_methods = ['get'] API.register(UserProfileResource()) class UserResource(ModelResource): profile = fields.ToOneField(UserProfileResource, 'profile', full=True) class Meta: queryset = User.objects.all() allowed_methods = ['get'] fields = ['username', 'first_name', 'last_name', 'is_staff'] filtering = { "is_staff": ('exact',) } API.register(UserResource()) # Copyright 2012 Trevor F. Smith (http://trevor.smith.name/) # 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.
from trullo import API class LogResource(ModelResource): class Meta: queryset = Log.objects.all() include_absolute_url = True filtering = { 'slug': ['exact'], 'public': ['exact'], } def get_object_list(self, request): objects = super(LogResource, self).get_object_list(request) if request.user.is_authenticated(): return objects return objects.filter(public=True) API.register(LogResource()) class LogEntryResource(ModelResource): log = fields.ForeignKey(LogResource, 'log') class Meta: queryset = LogEntry.objects.all() resource_name = 'log-entry' allowed_methods = ['get'] include_absolute_url = True paginator_class = Paginator filtering = { 'log': ALL_WITH_RELATIONS, 'source_url': ['isnull'], 'publish':['exact'], } def get_object_list(self, request):