Skip to content

Instantly share code, notes, and snippets.

@psantiago
psantiago / EnableApiCachingActionFilter.cs
Created September 30, 2016 17:51
fancy api caching action filter (for etags and max age)
/// <summary>
/// Enables caching by setting cache-control to private (instead of no-cache).
/// By default also enables etags, and sets cache-control max-age to 60 seconds.
/// </summary>
public class EnableApiCaching : ActionFilterAttribute
{
private readonly TimeSpan _maxAge;
private readonly bool _enableEntityTagCaching;
/// <summary>
@psantiago
psantiago / GzipActionFilter.cs
Created September 30, 2016 17:49
gzip action filter (mostly for web api)
/// <summary>
/// Enables caching by setting cache-control to private (instead of no-cache).
/// By default also enables etags, and sets cache-control max-age to 60 seconds.
/// </summary>
public class GzipActionFilter : ActionFilterAttribute
{
public override async Task OnActionExecutedAsync(HttpActionExecutedContext context, CancellationToken cancellationToken)
{
if (context.Request.Headers.AcceptEncoding.All(i => i.Value != "gzip")) return;
if (context.Response.Content == null) return;
@psantiago
psantiago / log.ps1
Last active December 4, 2015 16:13
When run in a directory of git repositories, gets all the commits by a given author since a given timeperiod, fancily formatted.
$author = Read-Host 'Commit author name?';
$sinceDate = Read-Host 'Get commits since (date)';
$filename = "commits.log";
$nl = [Environment]::NewLine;
Write-Host "log will be saved as $filename" -foreground "magenta";
del $filename;
ls |
@psantiago
psantiago / GetDifferences
Created September 12, 2014 17:47
Get Differences between two objects of type T
[DebuggerDisplay("PropertyName={PropertyName}: '{OriginalValue}' - '{NewValue}'")]
public class Difference
{
private readonly string _propertyName;
private readonly object _originalValue;
private readonly object _newValue;
public Difference(string propertyName, object originalValue, object newValue)
{
_propertyName = propertyName;
@psantiago
psantiago / CacheUtility.cs
Last active June 29, 2016 14:13
Simple Cache Utility
public static class CacheUtility
{
public static T Get<T>(string key) where T : new()
{
return (T)MemoryCache.Default.Get(typeof(T).FullName + key);
}
public static void Delete(string partialKey)
{
MemoryCache.Default.Where(i => i.Key.Contains(partialKey)).ToList().ForEach(i => MemoryCache.Default.Remove(i.Key));
@psantiago
psantiago / GenerateLog.cs
Created May 5, 2014 18:49
returns a Log object containing information on the differences between two instances of the same type
public static class GenerateLog
{
/// <summary>
/// Generate a simple log of the differences between oldItem and newItem based on properties with a display attribute and name.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="loggingUserIdentifier">The ID/email/name/etc. of the user making the change.</param>
/// <param name="oldItem">The existing item to that is being updated (or null if inserting 'newItem').</param>
/// <param name="newItem">The item to insert or update (or null, if deleting the item).</param>
/// <param name="customLogCases">
@psantiago
psantiago / GetAttributeFromExtension.cs
Last active December 27, 2015 16:49
Provides a few helper functions to get attributes from types and enums, and a couple specific functions to get the display name from types/instances similarly to how Html.LabelFor works.
public static class GetAttributeFromExtension
{
public static T GetAttributeFromEnum<T>(this Enum instance) where T : Attribute
{
var attrType = typeof(T);
var memberInfo = instance.GetType().GetMember(instance.ToString());
return ((T)(memberInfo[0].GetCustomAttributes(attrType, false).FirstOrDefault()));
}
/// <summary>