/// <summary> /// Remove this object from the db permenantly /// </summary> /// <returns>success status</returns> public virtual bool Remove(IAccount remover, StaffRank rank) { DataAccess.FileSystem.TemplateData accessor = new DataAccess.FileSystem.TemplateData(); try { //Not allowed to remove stuff you didn't make unless you're an admin, TODO: Make this more nuanced for guilds if (rank <= CreatorRank && !remover.Equals(Creator)) { return(false); } //Remove from cache first TemplateCache.Remove(new TemplateCacheKey(this)); //Remove it from the file system. accessor.ArchiveEntity(this); } catch (Exception ex) { LoggingUtility.LogError(ex); return(false); } return(true); }
/// <summary> /// Remove this object from the db permenantly /// </summary> /// <returns>success status</returns> public virtual bool SystemRemove() { DataAccess.FileSystem.TemplateData accessor = new DataAccess.FileSystem.TemplateData(); try { //Remove from cache first TemplateCache.Remove(new TemplateCacheKey(this)); //Remove it from the file system. accessor.ArchiveEntity(this); } catch (Exception ex) { LoggingUtility.LogError(ex); return(false); } return(true); }