An alternative to UBB.threads
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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Xml.Linq;
|
|
|
|
|
using FLocal.Core;
|
|
|
|
|
using FLocal.Common.dataobjects;
|
|
|
|
|
|
|
|
|
|
namespace FLocal.IISHandler.handlers.response {
|
|
|
|
|
class RegisterByInviteHandler : AbstractGetHandler<FLocal.Common.URL.my.login.RegisterByInvite> {
|
|
|
|
|
|
|
|
|
|
protected override string templateName {
|
|
|
|
|
get {
|
|
|
|
|
return "RegisterByInvite.xslt";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<XElement> getSpecificData(WebContext context) {
|
|
|
|
|
string[] parts = this.url.remainder.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries);
|
|
|
|
|
int inviteId = int.Parse(parts[0]);
|
|
|
|
|
string code = parts[1];
|
|
|
|
|
Invite invite = Invite.LoadById(inviteId);
|
|
|
|
|
if(invite.isUsed) throw new FLocalException("Invite is already used");
|
|
|
|
|
if(invite.code != code) throw new FLocalException("Code mismatch");
|
|
|
|
|
return new XElement[] {
|
|
|
|
|
invite.exportToXml(context),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|