|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Xml.Linq;
|
|
|
|
|
using Web.Core;
|
|
|
|
|
using Web.Core.DB;
|
|
|
|
|
using Web.Core.DB.conditions;
|
|
|
|
|
using FLocal.Common.actions;
|
|
|
|
|
|
|
|
|
|
namespace FLocal.Common.dataobjects {
|
|
|
|
|
public class Session : SqlObject<Session.SessionKey, Session> {
|
|
|
|
|
|
|
|
|
|
public struct SessionKey : IEquatable<SessionKey> {
|
|
|
|
|
|
|
|
|
|
private string key;
|
|
|
|
|
|
|
|
|
|
public static SessionKey Parse(string _key) {
|
|
|
|
|
if(_key == null) {
|
|
|
|
|
throw new FLocalException("SessionKey is null");
|
|
|
|
|
}
|
|
|
|
|
return new SessionKey { key = _key };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool IEquatable<SessionKey>.Equals(SessionKey _key) {
|
|
|
|
|
return this.key.Equals(_key.key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Equals(object obj) {
|
|
|
|
|
if(obj == null) return base.Equals(obj);
|
|
|
|
|
if(!(obj is SessionKey)) throw new InvalidCastException();
|
|
|
|
|
return ((IEquatable<SessionKey>)this).Equals((SessionKey)obj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int GetHashCode() {
|
|
|
|
|
return this.key.GetHashCode();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string ToString() {
|
|
|
|
|
return this.key;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class TableSpec : ISqlObjectTableSpec {
|
|
|
|
|
public const string TABLE = "Sessions";
|
|
|
|
|
public const string FIELD_ID = FIELD_SESSIONKEY;
|
|
|
|
|
public const string FIELD_SESSIONKEY = "SessionKey";
|
|
|
|
|
public const string FIELD_ACCOUNTID = "AccountId";
|
|
|
|
|
public const string FIELD_LASTACTIVITY = "LastActivity";
|
|
|
|
|
public const string FIELD_LASTHUMANACTIVITY = "LastHumanActivity";
|
|
|
|
|
public const string FIELD_LASTURL = "LastUrl";
|
|
|
|
|
public const string FIELD_ISDELETED = "IsDeleted";
|
|
|
|
|
public static readonly TableSpec instance = new TableSpec();
|
|
|
|
|
public string name { get { return TABLE; } }
|
|
|
|
|
public string idName { get { return FIELD_ID; } }
|
|
|
|
|
public void refreshSqlObject(int id) { throw new NotImplementedException(); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override ISqlObjectTableSpec table { get { return TableSpec.instance; } }
|
|
|
|
|
|
|
|
|
|
private string _sessionKey;
|
|
|
|
|
public string sessionKey {
|
|
|
|
|
get {
|
|
|
|
|
this.LoadIfNotLoaded();
|
|
|
|
|
return this._sessionKey;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int _accountId;
|
|
|
|
|
public int accountId {
|
|
|
|
|
get {
|
|
|
|
|
this.LoadIfNotLoaded();
|
|
|
|
|
return this._accountId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public Account account {
|
|
|
|
|
get {
|
|
|
|
|
return Account.LoadById(this.accountId);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private DateTime _lastActivity;
|
|
|
|
|
public DateTime lastActivity {
|
|
|
|
|
get {
|
|
|
|
|
this.LoadIfNotLoaded();
|
|
|
|
|
return this._lastActivity;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private DateTime _lastHumanActivity;
|
|
|
|
|
public DateTime lastHumanActivity {
|
|
|
|
|
get {
|
|
|
|
|
this.LoadIfNotLoaded();
|
|
|
|
|
return this._lastHumanActivity;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _lastUrl;
|
|
|
|
|
public string lastUrl {
|
|
|
|
|
get {
|
|
|
|
|
this.LoadIfNotLoaded();
|
|
|
|
|
return this._lastUrl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool _isDeleted;
|
|
|
|
|
public bool isDeleted {
|
|
|
|
|
get {
|
|
|
|
|
this.LoadIfNotLoaded();
|
|
|
|
|
return this._isDeleted;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void doFromHash(Dictionary<string, string> data) {
|
|
|
|
|
this._sessionKey = data[TableSpec.FIELD_SESSIONKEY];
|
|
|
|
|
this._lastActivity = Util.ParseDateTimeFromTimestamp(data[TableSpec.FIELD_LASTACTIVITY]).Value;
|
|
|
|
|
this._lastHumanActivity = Util.ParseDateTimeFromTimestamp(data[TableSpec.FIELD_LASTHUMANACTIVITY]).Value;
|
|
|
|
|
this._accountId = int.Parse(data[TableSpec.FIELD_ACCOUNTID]);
|
|
|
|
|
this._lastUrl = data[TableSpec.FIELD_LASTURL];
|
|
|
|
|
this._isDeleted = Util.string2bool(data[TableSpec.FIELD_ISDELETED]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void updateLastActivity(string lastUrl) {
|
|
|
|
|
if(lastUrl != null) {
|
|
|
|
|
string _url = lastUrl.ToLower();
|
|
|
|
|
if(_url.StartsWith("/upload/item")) return;
|
|
|
|
|
if(_url.StartsWith("/static")) return;
|
|
|
|
|
if(_url.StartsWith("/favicon.ico")) return;
|
|
|
|
|
if(DateTime.Now.Subtract(this.lastHumanActivity).TotalSeconds < 10) return; //to partially remove db load
|
|
|
|
|
} else {
|
|
|
|
|
if(DateTime.Now.Subtract(this.lastActivity).TotalSeconds < 10) return; //to partially remove db load
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
Dictionary<string, string> dataToUpdate = new Dictionary<string,string>();
|
|
|
|
|
dataToUpdate[TableSpec.FIELD_LASTACTIVITY] = DateTime.Now.ToUTCString();
|
|
|
|
|
if(lastUrl != null) {
|
|
|
|
|
dataToUpdate[TableSpec.FIELD_LASTURL] = lastUrl;
|
|
|
|
|
dataToUpdate[TableSpec.FIELD_LASTHUMANACTIVITY] = DateTime.Now.ToUTCString();
|
|
|
|
|
}
|
|
|
|
|
Config.Transactional(transaction => {
|
|
|
|
|
Config.instance.mainConnection.update(
|
|
|
|
|
transaction,
|
|
|
|
|
TableSpec.instance,
|
|
|
|
|
this.id.ToString(),
|
|
|
|
|
dataToUpdate
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
} finally {
|
|
|
|
|
this.ReLoad();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Session create(Account account) {
|
|
|
|
|
|
|
|
|
|
string key=null;
|
|
|
|
|
|
|
|
|
|
Config.Transactional(transaction => {
|
|
|
|
|
|
|
|
|
|
Config.instance.mainConnection.lockTable(transaction, TableSpec.instance);
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
key = Util.RandomString(32, Util.RandomSource.LETTERS_DIGITS);
|
|
|
|
|
} while(Config.instance.mainConnection.LoadByIds(transaction, TableSpec.instance, new List<string>() { key }).Count > 0);
|
|
|
|
|
|
|
|
|
|
Config.instance.mainConnection.insert(
|
|
|
|
|
transaction,
|
|
|
|
|
TableSpec.instance,
|
|
|
|
|
new Dictionary<string,string>() {
|
|
|
|
|
{ TableSpec.FIELD_SESSIONKEY, key },
|
|
|
|
|
{ TableSpec.FIELD_ACCOUNTID, account.id.ToString() },
|
|
|
|
|
{ TableSpec.FIELD_LASTACTIVITY, DateTime.Now.ToUTCString() },
|
|
|
|
|
{ TableSpec.FIELD_LASTHUMANACTIVITY, DateTime.Now.ToUTCString() },
|
|
|
|
|
{ TableSpec.FIELD_LASTURL, "" },
|
|
|
|
|
{ TableSpec.FIELD_ISDELETED, "0" },
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
return Session.LoadById(SessionKey.Parse(key));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void delete() {
|
|
|
|
|
try {
|
|
|
|
|
Config.Transactional(transaction => {
|
|
|
|
|
Config.instance.mainConnection.update(
|
|
|
|
|
transaction,
|
|
|
|
|
TableSpec.instance,
|
|
|
|
|
this.id.ToString(),
|
|
|
|
|
new Dictionary<string,string>() {
|
|
|
|
|
{ TableSpec.FIELD_ISDELETED, "1" },
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
} finally {
|
|
|
|
|
this.ReLoad();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public XElement exportToXml(UserContext context) {
|
|
|
|
|
return new XElement("session",
|
|
|
|
|
new XElement("lastActivity", this.lastHumanActivity.ToXml()),
|
|
|
|
|
new XElement("sessionKey", this.sessionKey),
|
|
|
|
|
this.account.user.exportToXmlForViewing(context),
|
|
|
|
|
AccountIndicator.LoadByAccount(this.account).exportToXml(context)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Session LoadByKey(string sessionKey) {
|
|
|
|
|
Session result = LoadById(SessionKey.Parse(sessionKey));
|
|
|
|
|
if(result.isDeleted) throw new NotFoundInDBException(TableSpec.instance, sessionKey);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Session GetLastSession(Account account) {
|
|
|
|
|
var ids = Config.instance.mainConnection.LoadIdsByConditions(
|
|
|
|
|
TableSpec.instance,
|
|
|
|
|
new ComparisonCondition(
|
|
|
|
|
TableSpec.instance.getColumnSpec(TableSpec.FIELD_ACCOUNTID),
|
|
|
|
|
ComparisonType.EQUAL,
|
|
|
|
|
account.id.ToString()
|
|
|
|
|
),
|
|
|
|
|
Diapasone.first,
|
|
|
|
|
new JoinSpec[0],
|
|
|
|
|
new SortSpec[] {
|
|
|
|
|
new SortSpec(
|
|
|
|
|
TableSpec.instance.getColumnSpec(TableSpec.FIELD_LASTHUMANACTIVITY),
|
|
|
|
|
false
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
if(ids.Count < 1) {
|
|
|
|
|
throw new NotFoundInDBException(TableSpec.instance.getColumnSpec(TableSpec.FIELD_ACCOUNTID), account.id.ToString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Session.LoadById(SessionKey.Parse(ids[0]));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|