##// END OF EJS Templates
changed raw and download diffs to gitdiff
changed raw and download diffs to gitdiff

File last commit:

r1041:98be43b8 beta
r1044:f3402cb9 beta
Show More
journal.py
134 lines | 4.7 KiB | text/x-python | PythonLexer
updated docs on every controller
r861 # -*- coding: utf-8 -*-
"""
rhodecode.controllers.journal
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Journal controller for pylons
:created_on: Nov 21, 2010
:author: marcink
fixed copyright year to 2011
r902 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
updated docs on every controller
r861 :license: GPLv3, see COPYING for more details.
"""
implemented user dashboards, and following system.
r734 # 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; version 2
# of the License or (at your opinion) any later version of the license.
#
# 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.
updated docs on every controller
r861 import logging
implemented user dashboards, and following system.
r734
Updated new Journal with users and dates aggregates
r1041 from sqlalchemy import or_
from sqlalchemy.orm import joinedload, make_transient
from webhelpers.paginate import Page
updated docs on every controller
r861
Updated new Journal with users and dates aggregates
r1041 from paste.httpexceptions import HTTPInternalServerError
from pylons import request, response, session, tmpl_context as c, url
fixes for journal, added paging now it's possible to view whole journal...
r995
disabled journal for anonymous users
r793 from rhodecode.lib.auth import LoginRequired, NotAnonymous
implemented user dashboards, and following system.
r734 from rhodecode.lib.base import BaseController, render
from rhodecode.lib.helpers import get_token
from rhodecode.model.db import UserLog, UserFollowing
from rhodecode.model.scm import ScmModel
updated docs on every controller
r861
implemented user dashboards, and following system.
r734 log = logging.getLogger(__name__)
class JournalController(BaseController):
@LoginRequired()
disabled journal for anonymous users
r793 @NotAnonymous()
implemented user dashboards, and following system.
r734 def __before__(self):
super(JournalController, self).__before__()
def index(self):
# Return a rendered template
c.following = self.sa.query(UserFollowing)\
Optimized queries on journal, and added quick stop following action button in journal
r1000 .filter(UserFollowing.user_id == c.rhodecode_user.user_id)\
.options(joinedload(UserFollowing.follows_repository))\
.all()
disabled journal for anonymous users
r793
Updated new Journal with users and dates aggregates
r1041
disabled journal for anonymous users
r793 repo_ids = [x.follows_repository.repo_id for x in c.following
activated filters for user journal for following users/repos only
r736 if x.follows_repository is not None]
disabled journal for anonymous users
r793 user_ids = [x.follows_user.user_id for x in c.following
activated filters for user journal for following users/repos only
r736 if x.follows_user is not None]
disabled journal for anonymous users
r793
optimized filtering on journal
r1019 filtering_criterion = None
fixes for journal, added paging now it's possible to view whole journal...
r995
optimized filtering on journal
r1019 if repo_ids and user_ids:
filtering_criterion = or_(UserLog.repository_id.in_(repo_ids),
UserLog.user_id.in_(user_ids))
if repo_ids and not user_ids:
filtering_criterion = UserLog.repository_id.in_(repo_ids)
if not repo_ids and user_ids:
filtering_criterion = UserLog.user_id.in_(user_ids)
if filtering_criterion is not None:
journal = self.sa.query(UserLog)\
Updated new Journal with users and dates aggregates
r1041 .options(joinedload(UserLog.user))\
.options(joinedload(UserLog.repository))\
optimized filtering on journal
r1019 .filter(filtering_criterion)\
.order_by(UserLog.action_date.desc())
else:
journal = []
Added grouping by days in journal
r994
fixes for journal, added paging now it's possible to view whole journal...
r995 p = int(request.params.get('page', 1))
c.journal_pager = Page(journal, page=p, items_per_page=10)
c.journal_day_aggreagate = self._get_daily_aggregate(c.journal_pager)
c.journal_data = render('journal/journal_data.html')
if request.params.get('partial'):
return c.journal_data
Added grouping by days in journal
r994
fixes for journal, added paging now it's possible to view whole journal...
r995 return render('journal/journal.html')
implemented user dashboards, and following system.
r734
Added grouping by days in journal
r994
def _get_daily_aggregate(self, journal):
from itertools import groupby
groups = []
for k, g in groupby(journal, lambda x:x.action_as_day):
Updated new Journal with users and dates aggregates
r1041 user_group = []
for k2, g2 in groupby(list(g), lambda x:x.user.email):
l = list(g2)
user_group.append((l[0].user, l))
groups.append((k, user_group,))
Added grouping by days in journal
r994
return groups
implemented user dashboards, and following system.
r734 def toggle_following(self):
tests update
r875 cur_token = request.POST.get('auth_token')
token = get_token()
if cur_token == token:
implemented user dashboards, and following system.
r734 scm_model = ScmModel()
user_id = request.POST.get('follows_user_id')
if user_id:
try:
scm_model.toggle_following_user(user_id,
c.rhodecode_user.user_id)
return 'ok'
except:
raise HTTPInternalServerError()
repo_id = request.POST.get('follows_repo_id')
if repo_id:
try:
scm_model.toggle_following_repo(repo_id,
c.rhodecode_user.user_id)
return 'ok'
except:
raise HTTPInternalServerError()
tests update
r875 log.debug('token mismatch %s vs %s', cur_token, token)
implemented user dashboards, and following system.
r734 raise HTTPInternalServerError()