Exemple #1
0
        public AspNetBundleContext(IBundleConfiguration bundleConfiguration, IBundleDiagnostic diagnostic, IBundleVirtualPathProvider bundleVirtualPathProvider, IBundleFileWatcher bundleFileWatcher, IBundleUrlHelper bundleUrlHelper)
        {
            if (bundleConfiguration == null)
            {
                throw new ArgumentNullException(nameof(bundleConfiguration));
            }
            if (diagnostic == null)
            {
                throw new ArgumentNullException(nameof(diagnostic));
            }
            if (bundleVirtualPathProvider == null)
            {
                throw new ArgumentNullException(nameof(bundleVirtualPathProvider));
            }
            if (bundleFileWatcher == null)
            {
                throw new ArgumentNullException(nameof(bundleFileWatcher));
            }
            if (bundleUrlHelper == null)
            {
                throw new ArgumentNullException(nameof(bundleUrlHelper));
            }

            Configuration       = bundleConfiguration;
            Diagnostic          = diagnostic;
            VirtualPathProvider = bundleVirtualPathProvider;
            Watcher             = bundleFileWatcher;
            UrlHelper           = bundleUrlHelper;
        }
Exemple #2
0
        public Bundle(PathString path, IBundleConfiguration defaults)
        {
            if (!path.HasValue)
            {
                throw ErrorHelper.ValueCannotBeEmpty(nameof(path));
            }

            if (defaults == null)
            {
                throw new ArgumentNullException(nameof(defaults));
            }

            Path     = path;
            Defaults = defaults;

            Sources = new List <BundleSource>();
        }
Exemple #3
0
 public AspNetBundleContext(IBundleConfiguration bundleConfiguration, IBundleDiagnostic diagnostic) : this(bundleConfiguration, diagnostic, new AspNetBundleVirtualPathProvider())
 {
 }
Exemple #4
0
 public AspNetBundleContext(IBundleConfiguration bundleConfiguration, IBundleDiagnostic diagnostic, IBundleVirtualPathProvider bundleVirtualPathProvider, IBundleFileWatcher bundleFileWatcher)
     : this(bundleConfiguration, diagnostic, bundleVirtualPathProvider, bundleFileWatcher, new AspNetBundleUrlHelper())
 {
 }
        public void Load(BundleCollection bundles, TextReader reader, ConfigFilePathMapper pathMapper)
        {
            if (bundles == null)
            {
                throw new ArgumentNullException(nameof(bundles));
            }

            if (reader == null)
            {
                throw new ArgumentNullException(nameof(reader));
            }

            if (bundles.SourceFileProvider == null)
            {
                throw ErrorHelper.PropertyCannotBeNull(nameof(bundles), nameof(bundles.SourceFileProvider));
            }

            if (pathMapper == null)
            {
                pathMapper = DefaultMapPath;
            }

            var serializer = JsonSerializer.CreateDefault();

            BundleData[] items = SerializationHelper.Deserialize <BundleData[]>(reader);

            var n = items.Length;

            for (var i = 0; i < n; i++)
            {
                BundleData item = items[i];

                PathString outputPath = pathMapper(UrlUtils.NormalizePath(item.OutputFileName), bundles.PathPrefix, output: true);
                if (!outputPath.HasValue)
                {
                    throw ErrorHelper.PathMappingNotPossible(item.OutputFileName, nameof(pathMapper));
                }

                var extension = Path.GetExtension(outputPath);

                IBundleConfiguration outputConfig = _extensionMappers.Select(em => em.MapOutput(extension)).FirstOrDefault(cfg => cfg != null);
                if (outputConfig == null)
                {
                    throw ErrorHelper.ExtensionNotRecognized(extension);
                }

                var bundle       = new Bundle(outputPath, outputConfig);
                var bundleSource = new FileBundleSource(bundles.SourceFileProvider, bundles.CaseSensitiveSourceFilePaths, bundle);

                bundle.Transforms = outputConfig.ConfigurationHelper.SetDefaultTransforms(bundle.Transforms);

                if (item.Minify.Any(kvp => "enabled".Equals(kvp.Key, StringComparison.OrdinalIgnoreCase) && kvp.Value is bool boolValue && boolValue))
                {
                    bundle.Transforms = outputConfig.ConfigurationHelper.EnableMinification(bundle.Transforms);
                }

                var m = item.InputFiles.Count;
                for (var j = 0; j < m; j++)
                {
                    var inputFile = item.InputFiles[j];

                    bool exclude;
                    if (inputFile.StartsWith('!'))
                    {
                        inputFile = inputFile.Substring(1);
                        exclude   = true;
                    }
                    else
                    {
                        exclude = false;
                    }

                    PathString inputPath = pathMapper(UrlUtils.NormalizePath(inputFile), PathString.Empty, output: false);
                    extension = Path.GetExtension(inputPath);

                    IBundleConfiguration inputConfig = _extensionMappers.Select(em => em.MapInput(extension)).FirstOrDefault(cfg => cfg != null);
                    if (inputConfig == null)
                    {
                        throw ErrorHelper.ExtensionNotRecognized(extension);
                    }

                    var bundleSourceItem = new FileBundleSourceItem(inputPath, bundleSource)
                    {
                        Exclude = exclude
                    };

                    bundleSourceItem.ItemTransforms = inputConfig.ConfigurationHelper.SetDefaultItemTransforms(bundleSourceItem.ItemTransforms);

                    bundleSource.Items.Add(bundleSourceItem);
                }

                bundle.Sources.Add(bundleSource);
                bundles.Add(bundle);
            }
        }