debian-mirror-gitlab/lib/gitlab/webpack/manifest.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
3.7 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2018-10-15 14:42:47 +05:30
module Gitlab
module Webpack
2021-01-03 14:25:43 +05:30
class Manifest
# Raised if we can't read our webpack manifest for whatever reason
class ManifestLoadError < StandardError
def initialize(message, orig)
super "#{message}\n\n(original error #{orig.class.name}: #{orig})"
end
end
# Raised if webpack couldn't build one of your entry points
class WebpackError < StandardError
def initialize(errors)
super "Error in webpack compile, details follow below:\n#{errors.join("\n\n")}"
end
end
# Raised if a supplied entry point does not exist in the webpack manifest
2018-10-15 14:42:47 +05:30
AssetMissingError = Class.new(StandardError)
class << self
2021-01-03 14:25:43 +05:30
include Gitlab::Utils::StrongMemoize
2018-10-15 14:42:47 +05:30
def entrypoint_paths(source)
2021-01-03 14:25:43 +05:30
raise WebpackError, manifest["errors"] unless manifest_bundled?
2018-10-15 14:42:47 +05:30
2020-01-01 13:55:28 +05:30
dll_assets = manifest.fetch("dllAssets", [])
2018-10-15 14:42:47 +05:30
entrypoint = manifest["entrypoints"][source]
if entrypoint && entrypoint["assets"]
# Can be either a string or an array of strings.
# Do not include source maps as they are not javascript
2020-01-01 13:55:28 +05:30
[dll_assets, entrypoint["assets"]].flatten.reject { |p| p =~ /.*\.map$/ }.map do |p|
2021-01-03 14:25:43 +05:30
"/#{Gitlab.config.webpack.public_path}/#{p}"
end
else
raise AssetMissingError, "Can't find asset '#{source}' in webpack manifest"
end
end
def asset_paths(source)
raise WebpackError, manifest["errors"] unless manifest_bundled?
paths = manifest["assetsByChunkName"][source]
if paths
# Can be either a string or an array of strings.
# Do not include source maps as they are not javascript
[paths].flatten.reject { |p| p =~ /.*\.map$/ }.map do |p|
"/#{Gitlab.config.webpack.public_path}/#{p}"
2018-10-15 14:42:47 +05:30
end
else
raise AssetMissingError, "Can't find entry point '#{source}' in webpack manifest"
end
end
2021-01-03 14:25:43 +05:30
def clear_manifest!
clear_memoization(:manifest)
end
private
def manifest_bundled?
!manifest["errors"].any? { |error| error.include? "Module build failed" }
end
def manifest
if Gitlab.config.webpack.dev_server.enabled
2021-03-08 18:12:59 +05:30
# Only cache at request level if we're in dev server mode, manifest may change ...
Gitlab::SafeRequestStore.fetch('manifest.json') { load_manifest }
2021-01-03 14:25:43 +05:30
else
# ... otherwise cache at class level, as JSON loading/parsing can be expensive
strong_memoize(:manifest) { load_manifest }
end
end
def load_manifest
2021-12-11 22:18:48 +05:30
data = Gitlab::Webpack::FileLoader.load(Gitlab.config.webpack.manifest_filename)
2021-01-03 14:25:43 +05:30
Gitlab::Json.parse(data)
2021-12-11 22:18:48 +05:30
rescue Gitlab::Webpack::FileLoader::StaticLoadError => e
raise ManifestLoadError.new("Could not load compiled manifest from #{e.uri}.\n\nHave you run `rake gitlab:assets:compile`?", e.original_error)
rescue Gitlab::Webpack::FileLoader::DevServerSSLError => e
2021-01-03 14:25:43 +05:30
ssl_status = Gitlab.config.webpack.dev_server.https ? ' over SSL' : ''
2021-12-11 22:18:48 +05:30
raise ManifestLoadError.new("Could not connect to webpack-dev-server at #{e.uri}#{ssl_status}.\n\nIs SSL enabled? Check that settings in `gitlab.yml` and webpack-dev-server match.", e.original_error)
rescue Gitlab::Webpack::FileLoader::DevServerLoadError => e
raise ManifestLoadError.new("Could not load manifest from webpack-dev-server at #{e.uri}.\n\nIs webpack-dev-server running? Try running `gdk status webpack` or `gdk tail webpack`.", e.original_error)
2021-01-03 14:25:43 +05:30
end
2018-10-15 14:42:47 +05:30
end
end
end
end