Example #1
0
        public static void Register(HttpConfiguration config)
        {
            // Add OData formatters (application/atom+xml)
            var odataFormatters = ODataMediaTypeFormatters.Create(
                new CustomSerializerProvider(provider => new NuGetEntityTypeSerializer(provider)),
                new DefaultODataDeserializerProvider());

            // Disable json and atomsvc - if these are ever needed, please reorder them
            // so they are at the end of the collection.
            // This will save you a few hours of debugging.
            var filteredFormatters = odataFormatters
                                     .Where(f => !f.SupportedMediaTypes.Any(m => m.MediaType.Equals("application/atomsvc+xml", StringComparison.OrdinalIgnoreCase) ||
                                                                            m.MediaType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase)))
                                     .ToList();

            // Disable indenting
            foreach (var mediaTypeFormatter in filteredFormatters)
            {
                mediaTypeFormatter.MessageWriterSettings.Indent = false;
            }

            // Register formatters as the one and only formatters.
            // If WebAPI is ever enabled, ensure to update this to have JSON/XML support.
            config.Formatters.Clear();
            config.Formatters.InsertRange(0, filteredFormatters);

            // Register feeds
            NuGetODataV1FeedConfig.Register(config);
            NuGetODataV2FeedConfig.Register(config);

            config.EnsureInitialized();
        }
Example #2
0
 protected static ODataQueryOptions <V2FeedPackage> GetODataQueryOptionsForTest(Uri requestUri)
 {
     return(new ODataQueryOptions <V2FeedPackage>(
                new ODataQueryContext(NuGetODataV2FeedConfig.GetEdmModel(), typeof(V2FeedPackage)),
                new HttpRequestMessage(HttpMethod.Get, requestUri)));
 }