Git Product home page Git Product logo

filterpipelines's Introduction

FilterPipelines

Build status NuGet

FilterPipelines は middleware pattern によってフィルター パイプラインを構築する為の、シンプルな .NET ヘルパーライブラリです。

Target Frameworks

  • .NET Standard 2.0+
  • .NET Standard 1.0+
  • .NET Framework 4.5+

Usage

MiddlewareFunc delegate

Func<Uri, Task<PredicateFunc<FileInfo>>> pipeline = FilterPipeline.Build(new MiddlewareFunc<Uri, Task<PredicateFunc<FileInfo>>>[]{
    next => async context => {
        if (!context.Scheme.Equals("https", StringComparison.OrdinalIgnoreCase)) { return _ => false; }
        return await next(context);
    },
    next => async context => {
        var nextPredicate = await next(context);
        var uriPath = context.AbsolutePath.TrimStart('/');
        return file => Path.GetFileNameWithoutExtension(file.Name).Equals(uriPath, StringComparison.OrdinalIgnoreCase) && nextPredicate(file);
    },
});

var predicate = await pipeline(new Uri("https://example.com/foo"));
Assert.AreEqual(true, predicate(new FileInfo("foo.html")));
Assert.AreEqual(false, predicate(new FileInfo("bar.html")));

Assert.AreEqual(false, (await pipeline(new Uri("http://example.com/foo")))(new FileInfo("foo.html")));

IMiddleware interface

public async Task Main() {
    var middlewares = new PredicateMiddleware<Uri, FileInfo>[]{
        new HttpsPredicate(),
        new StaticFilePredicate(),
    };
    Func<Uri, Task<PredicateFunc<FileInfo>>> pipeline = FilterPipeline.Build(middlewares.Select(x => x.ToDelegate()));

    var predicate = await pipeline(new Uri("https://example.com/foo"));
    Assert.AreEqual(true, predicate(new FileInfo("foo.html")));
    Assert.AreEqual(false, predicate(new FileInfo("bar.html")));

    Assert.AreEqual(false, (await pipeline(new Uri("http://example.com/foo")))(new FileInfo("foo.html")));
}

public class HttpsPredicate : PredicateMiddleware<Uri, FileInfo> {

    protected override async Task<PredicateFunc<FileInfo>> CreateAsync(Uri context, Func<Uri, Task<PredicateFunc<FileInfo>>> next) {
        if (!context.Scheme.Equals("https", StringComparison.OrdinalIgnoreCase)) { return _ => false; }
        return await next(context);
    }
}

public class StaticFilePredicate : PredicateMiddleware<Uri, FileInfo> {

    protected override PredicateFunc<FileInfo> Create(Uri context, ref bool cancelled) {
        var uriPath = context.AbsolutePath.TrimStart('/');
        return file => Path.GetFileNameWithoutExtension(file.Name).Equals(uriPath, StringComparison.OrdinalIgnoreCase);
    }
}

Licence

This project is licensed under the MIT License - see the LICENSE file for details

filterpipelines's People

Contributors

in-async avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.