Skip to content

Instantly share code, notes, and snippets.

View darrenferguson's full-sized avatar

Darren Ferguson darrenferguson

View GitHub Profile
using System.Collections.Generic;
using Moriyama.Library.Architecture;
using Newtonsoft.Json;
namespace Application.Search
{
public class VortoPropertyIndexer
{
// Somewhere in startup
//ExamineManager.Instance.IndexProviderCollection["ExternalIndexer"].GatheringNodeData += MoriyamaApplicationEventHandlerGatheringNodeData;
using RestSharp;
void ContentServicePublished(IPublishingStrategy sender, PublishEventArgs<IContent> e)
{
foreach (var entity in e.PublishedEntities)
{
var umbracoHelper = new UmbracoHelper(UmbracoContext.Current);
var url = umbracoHelper.Url(entity.Id, UrlProviderMode.Relative);
var urls = string.Format("https://slacker.moriyama.co.uk{0} or http://slacker.moriyama.int{0}", url);
try
{
...
}
catch (Exception ex)
{
// Dunno why Current equals null on import but this skips the error
}
using System.Configuration;
using Umbraco.Core;
using System.Data.SqlClient;
using System.Diagnostics;
using System.Reflection;
using System.Web.Configuration;
using Newtonsoft.Json;
using Umbraco.Core.Persistence;
using Umbraco.Core.Persistence.SqlSyntax;
class Program
{
static void Main(string[] args)
{
string json =
@"[
{
""X"":
{
public static void Archive(this IContent content)
{
var h = new UmbracoHelper(UmbracoContext.Current);
var c = h.TypedContent(content.Id);
if (c != null)
{
var u = c.Url;
var xml = content.ToXml();
public class Archive
{
public int Id { get; set; }
public string Url { get; set; }
public string Xml { get; set; }
}
public static class PublishedContentExtensions
{
public static void Archive(this IContent content)
public class ArchiveContentFinder : IContentFinder
{
public bool TryFindContent(PublishedContentRequest contentRequest)
{
var path = contentRequest.Uri.GetAbsolutePathDecoded();
var db = ApplicationContext.Current.DatabaseContext.Database;
var archived = db.SingleOrDefault<Archive>("select * from archive where Url = @0 or Url = @1", path, path + "/");
### Keybase proof
I hereby claim:
* I am darrenferguson on github.
* I am darrenferguson (https://keybase.io/darrenferguson) on keybase.
* I have a public key whose fingerprint is 138F 786D 6C5D 3EE4 5429 94B1 3E81 F7EC F93D 9E48
To claim this, I am signing this object:
public class MyPublishedContent : PublishedContentBase
{
public MyPublishedContent(string xml)
{
var doc = new XmlDocument();
doc.LoadXml(xml);
_xmlNode = doc.DocumentElement;
}
private readonly XmlNode _xmlNode;