def frienduser_(request): form = request.web_input(userid="") otherid = define.get_int(form.userid) if request.userid == otherid: return Response( define.errorpage(request.userid, "You cannot friend yourself.")) if form.action == "sendfriendrequest": if not frienduser.check(request.userid, otherid) and not frienduser.already_pending( request.userid, otherid): frienduser.request(request.userid, otherid) elif form.action == "withdrawfriendrequest": if frienduser.already_pending(request.userid, otherid): frienduser.remove_request(request.userid, otherid) elif form.action == "unfriend": frienduser.remove(request.userid, otherid) if form.feature == "pending": raise HTTPSeeOther(location="/manage/friends?feature=pending") else: # typical value will be user raise HTTPSeeOther( location="/~%s" % (define.get_sysname(define.get_display_name(otherid))))
def frienduser_(request): if not define.is_vouched_for(request.userid): raise WeasylError("vouchRequired") form = request.web_input(userid="") otherid = define.get_int(form.userid) if request.userid == otherid: raise WeasylError('cannotSelfFriend') if form.action == "sendfriendrequest": if not frienduser.check(request.userid, otherid) and not frienduser.already_pending( request.userid, otherid): frienduser.request(request.userid, otherid) elif form.action == "withdrawfriendrequest": if frienduser.already_pending(request.userid, otherid): frienduser.remove_request(request.userid, otherid) elif form.action == "unfriend": frienduser.remove(request.userid, otherid) if form.feature == "pending": raise HTTPSeeOther(location="/manage/friends?feature=pending") else: # typical value will be user raise HTTPSeeOther( location="/~%s" % (define.get_sysname(define.get_display_name(otherid))))
def unfrienduser_(request): form = request.web_input(userid="", feature="") otherid = define.get_int(form.userid) if request.userid == otherid: raise WeasylError('cannotSelfFriend') frienduser.remove(request.userid, otherid) raise HTTPSeeOther(location="/manage/friends?feature=%s" % form.feature)
def unfrienduser_(request): form = request.web_input(userid="", feature="") otherid = define.get_int(form.userid) if request.userid == otherid: return Response(define.errorpage(request.userid, "You cannot friend yourself.")) frienduser.remove(request.userid, otherid) raise HTTPSeeOther(location="/manage/friends?feature=%s" % form.feature)
def POST(self): form = web.input(userid="", feature="") otherid = define.get_int(form.userid) if self.user_id == otherid: return define.errorpage(self.user_id, "You cannot friend yourself.") frienduser.remove(self.user_id, otherid) raise web.seeother("/manage/friends?feature=%s" % form.feature)
def unfrienduser_(request): form = request.web_input(userid="", feature="") otherid = define.get_int(form.userid) if request.userid == otherid: return Response( define.errorpage(request.userid, "You cannot friend yourself.")) frienduser.remove(request.userid, otherid) raise HTTPSeeOther(location="/manage/friends?feature=%s" % form.feature)
def frienduser_(request): form = request.web_input(userid="") otherid = define.get_int(form.userid) if request.userid == otherid: return Response(define.errorpage(request.userid, "You cannot friend yourself.")) if form.action == "sendfriendrequest": if not frienduser.check(request.userid, otherid) and not frienduser.already_pending(request.userid, otherid): frienduser.request(request.userid, otherid) elif form.action == "withdrawfriendrequest": if frienduser.already_pending(request.userid, otherid): frienduser.remove_request(request.userid, otherid) elif form.action == "unfriend": frienduser.remove(request.userid, otherid) if form.feature == "pending": raise HTTPSeeOther(location="/manage/friends?feature=pending") else: # typical value will be user raise HTTPSeeOther(location="/~%s" % (define.get_sysname(define.get_display_name(otherid))))
def POST(self): form = web.input(userid="") otherid = define.get_int(form.userid) if self.user_id == otherid: return define.errorpage(self.user_id, "You cannot friend yourself.") if form.action == "sendfriendrequest": if not frienduser.check(self.user_id, otherid) and not frienduser.already_pending(self.user_id, otherid): frienduser.request(self.user_id, otherid) elif form.action == "withdrawfriendrequest": if frienduser.already_pending(self.user_id, otherid): frienduser.remove_request(self.user_id, otherid) elif form.action == "unfriend": frienduser.remove(self.user_id, otherid) if form.feature == "pending": raise web.seeother("/manage/friends?feature=pending") else: # typical value will be user raise web.seeother("/~%s" % (define.get_sysname(define.get_display_name(otherid))))