38 lines
1.1 KiB
Swift
38 lines
1.1 KiB
Swift
//
|
|
// HTTPResponseExtension.swift
|
|
// PerfectMustache
|
|
//
|
|
// Created by Jonathan Guthrie on 2017-08-01.
|
|
// Copyright (C) 2017 PerfectlySoft, Inc.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Perfect.org open source project
|
|
//
|
|
// Copyright (c) 2015 - 2016 PerfectlySoft Inc. and the Perfect project authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See http://perfect.org/licensing.html for license information
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
|
|
import PerfectHTTP
|
|
|
|
import Foundation
|
|
extension HTTPResponse {
|
|
public func renderMustache(template: String, context values: [String: Any] = [String: Any]()) {
|
|
let context = MustacheEvaluationContext(templatePath: template)
|
|
let collector = MustacheEvaluationOutputCollector()
|
|
context.extendValues(with: values)
|
|
do {
|
|
let d = try context.formulateResponse(withCollector: collector)
|
|
self.setBody(string: d)
|
|
.completed()
|
|
} catch {
|
|
self.setBody(string: "\(error)")
|
|
.completed(status: .internalServerError)
|
|
}
|
|
}
|
|
}
|