41 lines
861 B
Ruby
41 lines
861 B
Ruby
require 'rack/utils'
|
|
|
|
module Locomotive
|
|
module Hosting
|
|
module Bushido
|
|
class Middleware
|
|
|
|
include Rack::Utils
|
|
|
|
def initialize(app, opts = {})
|
|
@app = app
|
|
@path_regexp = %r{^/admin/}
|
|
end
|
|
|
|
def call(env)
|
|
if env['PATH_INFO'] =~ @path_regexp
|
|
status, headers, response = @app.call(env)
|
|
|
|
content = ""
|
|
response.each { |part| content += part }
|
|
|
|
# "claiming" bar + stats ?
|
|
content.gsub!(/<\/body>/i, <<-STR
|
|
<script type="text/javascript">bushido.enableChat();</script>
|
|
</body>
|
|
STR
|
|
)
|
|
|
|
headers['content-length'] = bytesize(content).to_s
|
|
|
|
[status, headers, [content]]
|
|
else
|
|
@app.call(env)
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|