You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Xml.Linq;
|
|
using FLocal.Common.dataobjects;
|
|
using FLocal.Importer;
|
|
using System.Text.RegularExpressions;
|
|
using FLocal.Core;
|
|
using FLocal.Common;
|
|
using FLocal.Common.actions;
|
|
using System.Web;
|
|
|
|
namespace FLocal.IISHandler.handlers.request {
|
|
class LogoutHandler : AbstractPostHandler {
|
|
|
|
protected override string templateName {
|
|
get {
|
|
return "result/Logout.xslt";
|
|
}
|
|
}
|
|
|
|
protected override XElement[] Do(WebContext context) {
|
|
if(context.session.id.ToString().ToLower() != context.httprequest.QueryString["sessionKey"].ToLower()) {
|
|
throw new FLocalException("Wrong session id");
|
|
}
|
|
context.session.delete();
|
|
|
|
HttpCookie sessionCookie = context.createCookie("session");
|
|
sessionCookie.Value = "";
|
|
sessionCookie.Expires = DateTime.Now.AddDays(-1);
|
|
context.httpresponse.AppendCookie(sessionCookie);
|
|
context.session = null;
|
|
|
|
return new XElement[0];
|
|
}
|
|
|
|
}
|
|
}
|
|
|