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.
52 lines
1.5 KiB
52 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Web;
|
|
using System.Xml.Linq;
|
|
using FLocal.Common;
|
|
using FLocal.Common.dataobjects;
|
|
using FLocal.Core;
|
|
using FLocal.Core.DB;
|
|
using FLocal.Core.DB.conditions;
|
|
|
|
namespace FLocal.IISHandler.handlers.response {
|
|
|
|
abstract class AbstractUserGetHandler : AbstractGetHandler {
|
|
|
|
abstract protected IEnumerable<XElement> getUserSpecificData(WebContext context, User user);
|
|
|
|
sealed override protected IEnumerable<XElement> getSpecificData(WebContext context) {
|
|
User user;
|
|
{
|
|
int userId;
|
|
if(int.TryParse(context.requestParts[2], out userId)) {
|
|
user = User.LoadById(userId);
|
|
} else {
|
|
user = User.LoadByName(context.requestParts[2]);
|
|
}
|
|
}
|
|
Account account = null;
|
|
if(context.session != null) {
|
|
try {
|
|
account = Account.LoadByUser(user);
|
|
} catch(NotFoundInDBException) {
|
|
}
|
|
}
|
|
Session lastSession = null;
|
|
if(account != null && !account.isDetailedStatusHidden) {
|
|
try {
|
|
lastSession = Session.GetLastSession(account);
|
|
} catch(NotFoundInDBException) {
|
|
}
|
|
}
|
|
return new XElement[] {
|
|
user.exportToXmlForViewing(context),
|
|
(account == null) ? null : new XElement("accountId", account.id.ToString()), //for PM history, PM send etc
|
|
(lastSession == null) ? null : new XElement("lastActivity", lastSession.lastHumanActivity.ToXml()),
|
|
}.Union(this.getUserSpecificData(context, user));
|
|
}
|
|
|
|
}
|
|
|
|
} |