/* * Copyright 2006-2019 WebPKI.org (http://webpki.org). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ using System; using System.Globalization; using System.Text.RegularExpressions; using Newtonsoft.Json; using Newtonsoft.Json.Converters; // Annotation argument for DateTime encoding/decoding namespace json.net.signaturesupport { public class UTCStrictDateConverter : DateTimeConverterBase { static Regex UTC_DATE_NO_FRACTION_PATTERN = new Regex("^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$"); public override bool CanConvert(Type objectType) { return true; } public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) { DateTime date = ((DateTime)value).ToUniversalTime(); writer.WriteValue(date.ToString("yyyy-MM-dd'T'HH:mm:ss'Z'", CultureInfo.InvariantCulture)); } public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) { string value = (string)reader.Value; if (UTC_DATE_NO_FRACTION_PATTERN.IsMatch(value)) { return DateTime.Parse(value); } throw new ArgumentException("Invalid DateTime format: " + value); } } }