2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-01-18 00:47:01 +08:00
|
|
|
module Middleware
|
|
|
|
# In development mode, it is common to use a database from a production site for testing
|
|
|
|
# with their data. Unfortunately, you can end up with dozens of missing avatar requests
|
|
|
|
# due to the files not being present locally. This middleware, only enabled in development
|
|
|
|
# mode, will replace those with an appropriate image.
|
|
|
|
class MissingAvatars
|
|
|
|
def initialize(app, settings = {})
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
2023-01-21 02:52:49 +08:00
|
|
|
if (env["REQUEST_PATH"] =~ %r{\A/uploads/default/avatars})
|
2014-01-18 00:47:01 +08:00
|
|
|
path = "#{Rails.root}/public#{env["REQUEST_PATH"]}"
|
|
|
|
unless File.exist?(path)
|
|
|
|
default_image = "#{Rails.root}/public/images/d-logo-sketch-small.png"
|
|
|
|
return 200, { "Content-Type" => "image/png" }, [File.read(default_image)]
|
|
|
|
end
|
|
|
|
end
|
2017-07-28 09:20:09 +08:00
|
|
|
|
2014-01-18 00:47:01 +08:00
|
|
|
status, headers, response = @app.call(env)
|
|
|
|
[status, headers, response]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|