Files
@ b68b2246e5a6
Branch filter:
Location: kallithea/pylons_app/controllers/repos.py - annotation
b68b2246e5a6
2.8 KiB
text/x-python
Authenticated controller with LoginRequired decorator, and cleaned __before__ (used in baseController now). fixed User for clone url with logged in session user.
Removed login form from admin.
Removed login form from admin.
f6ac79182600 8fb1abd4178a f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 3ada2f409c1c 8fb1abd4178a 8fb1abd4178a 8fb1abd4178a b5e59e2b5cfe f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 25e516447a33 f6ac79182600 f6ac79182600 f6ac79182600 b68b2246e5a6 3ada2f409c1c f6ac79182600 f6ac79182600 f6ac79182600 8e01265fb586 20dc7a5eb748 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 8fb1abd4178a 8fb1abd4178a 8fb1abd4178a 8fb1abd4178a 8fb1abd4178a 8fb1abd4178a b5e59e2b5cfe b5e59e2b5cfe 8e01265fb586 b5e59e2b5cfe 8fb1abd4178a 8fb1abd4178a f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 8e250e86a670 f6ac79182600 f6ac79182600 f6ac79182600 | import logging
import os
from pylons import request, response, session, tmpl_context as c, url, app_globals as g
from pylons.controllers.util import abort, redirect
from pylons_app.lib import auth
from pylons_app.lib.base import BaseController, render
from pylons_app.model.db import Users, UserLogs
from pylons_app.model.hg_model import HgModel
from operator import itemgetter
import shutil
from pylons_app.lib.utils import invalidate_cache
log = logging.getLogger(__name__)
class ReposController(BaseController):
"""REST Controller styled on the Atom Publishing Protocol"""
# To properly map this controller, ensure your config/routing.py
# file has a resource setup:
# map.resource('repo', 'repos')
def __before__(self):
c.admin_user = session.get('admin_user')
c.admin_username = session.get('admin_username')
super(ReposController, self).__before__()
def index(self, format='html'):
"""GET /repos: All items in the collection"""
# url('repos')
c.repos_list = c.cached_repo_list
return render('admin/repos/repos.html')
def create(self):
"""POST /repos: Create a new item"""
# url('repos')
def new(self, format='html'):
"""GET /repos/new: Form to create a new item"""
# url('new_repo')
def update(self, id):
"""PUT /repos/id: Update an existing item"""
# Forms posted to this method should contain a hidden field:
# <input type="hidden" name="_method" value="PUT" />
# Or using helpers:
# h.form(url('repo', id=ID),
# method='put')
# url('repo', id=ID)
def delete(self, id):
"""DELETE /repos/id: Delete an existing item"""
# Forms posted to this method should contain a hidden field:
# <input type="hidden" name="_method" value="DELETE" />
# Or using helpers:
# h.form(url('repo', id=ID),
# method='delete')
# url('repo', id=ID)
from datetime import datetime
path = g.paths[0][1].replace('*', '')
rm_path = os.path.join(path, id)
log.info("Removing %s", rm_path)
shutil.move(os.path.join(rm_path, '.hg'), os.path.join(rm_path, 'rm__.hg'))
shutil.move(rm_path, os.path.join(path, 'rm__%s-%s' % (datetime.today(), id)))
#clear our cached list for refresh with new repo
invalidate_cache('cached_repo_list')
return redirect(url('repos'))
def show(self, id, format='html'):
"""GET /repos/id: Show a specific item"""
# url('repo', id=ID)
return render('/repos_show.html')
def edit(self, id, format='html'):
"""GET /repos/id/edit: Form to edit an existing item"""
# url('edit_repo', id=ID)
|