Tagged Questions
0
votes
1answer
25 views
Trigger basic HTTP auth from within middleware
I have created a custom middleware for rails which will intercept all requests and make sure it's coming from an authorized IP, otherwise it should prompt for a basic http auth user/name password.
...
0
votes
1answer
54 views
Extract Ruby Parameters
Hi i am trying to make a rack controller similar to Rack::URLBuilder but i am having trouble extracting the parameters.
config.ru
run Example::Controller.new ([
"test" => Sinatra::Application
...
0
votes
1answer
90 views
Modify Rack App
For one of my ruby applications i need the server to route requests based on the subdomain. There are ways to do this using other gems but i decided to make my own "middleware". This code runs ...
0
votes
0answers
68 views
Subdomain App Routing
I'm trying to make a ruby based app for heroku that will use subdomains to route users to the correct application. After searching google i came up with a sloppy way of doing this, but i was wondering ...
2
votes
1answer
134 views
Ruby rack middleware to filter all the exceptions raised in the stack
Hi I just had a question on how to appropriately manage exception handling with ruby rack.
I am currently building a lightweight API with Sinatra/Rack and every route could through an exception (e.g. ...
1
vote
1answer
70 views
When it comes to middleware, what's the difference between config.ru and application.rb?
Am I correct in understanding that application.rb runs middleware within the whole Rails stack, while putting something in config.ru pre-empts the Rails stack?
This means that if I say for example ...
0
votes
1answer
84 views
Standardizing api responses in a modular Sinatra application
I'm developing an api as a modular Sinatra web application and would like to standardize the responses that are returned without having to do so explicitly. I thought this could be achieved by using ...
1
vote
1answer
179 views
Writting 404 Error Page Route with Rack Static Page
How do you map a 404 Error Page in the config.ru file o a Rack Static Page (hosted on heroku)?
So far I have this in my config.ru file
use Rack::Static,
:urls => ["/css", "/images", "/fonts", ...
0
votes
1answer
129 views
Error on a Sinatra's middleware
In my Sinatra app, I've created the following middleware to ensure the incoming request contains the parameter "token" in the query string
class CheckMandatoryParams
def initialize(app)
@app = ...
0
votes
1answer
436 views
Getting rack error Rack::Lint::LintError: Status must be >=100 seen as integer
I'm trying to build my rack based ruby app, and I'm still new here, I'm using ruby 1.9.2 -p180
in my config.ru file I have:
require "rack"
require "./my_app.rb"
require "./auth.rb"
use Auth
run ...
0
votes
1answer
512 views
rack-rewrite with Rails 3.2.3 on Heroku
I'm trying to set up rack-rewrite for a Rails 3.2.3 on Heroku cedar stack and everywhere I look it says to add something like:
config.middleware.insert_before(Rack::Lock, Rack::Rewrite) do
# ...
0
votes
0answers
195 views
undefined method `each' for #<StoreController:0x1eb39fc>
UPDATE: it's fixed. For reasons beyond the scope of normal human understanding - probably because some early parts of this app were written when i was a Nuby - ApplicationController had 'include ...
1
vote
0answers
42 views
Request Stats printer for Rails
For every request , rails, by default, logs time spent in views/active_record(sql), active resource http requests, etc. For e.g.
Started GET "/blah" for 127.0.0.1 at Thu Jun 07 19:07:33 +0530 2012
...
0
votes
1answer
61 views
More control over middleware ordering via Railtie?
There are gems/libraries that would benefit from better control over where they inject their middleware.
In particular it would be nice if exception-handling middleware were at the top of the stack.
...
0
votes
2answers
267 views
How to use this rack middleware with a Rails 3.x app?
Found this gem Rack After Reply that says:
A hook for Rack apps which fires after the response has been sent, and the socket to the client has been closed.
This is the ideal time to perform ...
2
votes
0answers
182 views
Proper way to use a Rack middleware from a gem in a Rails project with Bundler
I've got a Rails project that's setup using Bundler. One of my bundled gems provides a Rack middleware that I'd like to use in my Rails app (but only in the 'production' Rails environment).
If I just ...
0
votes
1answer
604 views
Where to put the rack middleware file in rails 3?
I want to use this rack middleware in my rails app, followed every solutions on another SO post but still no luck, keep on getting uninitialized constant error.
So, what's the precise location to put ...
0
votes
1answer
367 views
How to response with JSON format using Ruby Rack middleware
How to reply a simple ruby rack server with JSON object , lets assume mt server is something like :
app = Proc.new do |env|
[200, { 'Content-Type' => 'text/plain' }, ['Some body']]
end
...
1
vote
3answers
305 views
reload rails stack in development for requests through custom middleware
I am using a custom Rack middleware in my Rails 3.1 app that wraps around a vanilla Rails controller:
in routes.rb
stacked_router =
...
4
votes
2answers
592 views
Update middleware in Rails
Is there any way to MODIFY (NOT replace) a middleware in rails?
So instead of:
config.middleware.delete ::Rack::Cache
config.middleware.use ::Rack::Cache, :metastore => "rails:/", :entitystore ...
1
vote
0answers
179 views
Disabling Rails middleware for some actions but not all
It seems that ActionDispatch::ParamsParser is quite slow for some requests, in particular when there is a large JSON request body. I'd like to disable it for these requests, but for most of my ...
0
votes
1answer
142 views
Rack Middleware, is it not called for requests on /assets?
I'm trying to build a middleware that can restrict access based on conditions. I noticed that I have no control over request that come in as /assets.....
Is there a way to get the middleware called ...
1
vote
1answer
98 views
How to prevent access to a whitelist of IPS, exclude public paths allow for CDN access?
I have a staging server that I want to have a whitelist of IPs for.
Problem is, the staging server uses an origin server that needs to hit the staging server. It's Amazon's CloudFront which has no ...
2
votes
1answer
867 views
const_missing': uninitialized constant Rack::IpRestrictor (NameError)
Why the error?
Here's the setup:
config/initializers/rack_ip_restrictor.rb
Rack::IpRestrictor.configure do
respond_with [403, {'Content-Type' => 'text/html'}, '']
ips_for :test do
add ...
3
votes
1answer
250 views
Building middleware that grabs the IP
I'm trying to write my firsts rack middleware. And need help. I want middleware that find the requestor's IP and if it is in the allowed list of IP continues the request, otherwise it aborts.
The ...
1
vote
1answer
2k views
Rails 3 middleware modify request headers
My setup: Rails 3.0.9, Ruby 1.9.2
I am working on my first middleware app and it seems like all of the examples deal with modify the response. I need to examine and modify the request headers in ...
0
votes
1answer
263 views
Displaying page response time and AJAX request response times with Rack middleware
I want to write a piece of Rack middleware that will display the response time for rendering the page, as well as the response times for any AJAX requests made on the page. What's the best way to go ...
2
votes
1answer
612 views
Add api_key on every request with Rack middleware
I work with Devise token_authentication service and ActiveResource client. I wish set automatically :auth_token params in every requests !
I tried this, but this doesn't work...
class AuthApp
...
1
vote
0answers
231 views
Rails 3: Insert HTML-Snippets into responses within a gem
I do have a question concerning the development of a gem for Rails 3.
I would like to insert specific HTML snippets/partials/fragments (e.g. a form or an image on a fixed position) into every HTTP ...
4
votes
1answer
250 views
Is it possible to pass a flash message from Rails to Sinatra?
I have a project that uses Sinatra for static pages and Rails for the application.
I allow the request to hit one or the other by doing this in config.ru:
run Rack::Cascade.new([
...
1
vote
3answers
1k views
The Rails Metal in Ruby on Rails 3
I am using Ruby on Rails 3 and I would like to implement some Rack middleware.
I know (but maybe I am wrong!) that, before of version 3, there was the Rails Metal "system" to handle those. But now?!
...
3
votes
0answers
649 views
Omniauth: How to set authentication provider details at runtime
I have a rails app that is accessible from 2 domains. Facebook requires me to register a facebook app for each of these domains and gives me credentials for each. With Omniauth I can only specify one ...
1
vote
1answer
166 views
Rails 3.0.3 and InvalidAuthenticityToken
I am, from only some users, getting a InvalidAuthenticityToken exception. When I examine the error I can see that the request has "\r\n" added to the authenticity_token parameter (ie: ...
1
vote
2answers
202 views
Why does OmniAuth pass requests onto the next middleware?
OmniAuth works great, but I've noticed when using it in a Rails v2.3.6 app that it passes requests on to the next Rack middleware, even though it ends up handling the request itself, and responding ...
2
votes
2answers
2k views
Hello World rack middleware with rails 3: how to process body of all requests
i want to try out a simple rack middleware "hello world", but i seem to get stuck.
it looks like the main sytax changed, since some examples use this code:
require 'rack/utils'
class FooBar
def ...
0
votes
1answer
350 views
use some Middleware only for specific Rack website
I have a Rack server where I run multiple websites.
use Rack::Session::Cookie
app = lambda do |env|
case
# Kek Mobile
when env['HTTP_HOST'] =~ /mobi.kek.com/
require ...
1
vote
1answer
801 views
How to use http basic auth in Rails Metal?
I'm trying to implement http basic authentication in rails metal.
Using this code:
class Api
def self.call(env)
if env["PATH_INFO"] =~ /^\/client/
Rack::Auth::Basic.new(env) do |user, ...
1
vote
2answers
462 views
How can I get an ordered list of middleware in use in a generic rack application?
The functionality I am looking for is similar to the rake middleware command in Rails, except for a generic rack application.
3
votes
1answer
1k views
Rack rack.input variable getting truncated?
I wrote a piece of Rack Middleware to automatically unzip compressed request bodies. The code seems to be working just fine, but when I plug it into my rails app, I get a failure "Invalid JSON" from ...
1
vote
1answer
313 views
How to get objects of used Rack middleware running in a Rails app
I'm using Rack middleware that accepts some configuration that I need to change at run time. So I need the instance of its class that's currently in memory. Is there a way to do obtain it?
0
votes
1answer
302 views
Ruby Rack & Multiple Internet Domains
I am having two domains running each a separate web application that should be served by one server i.e. one ip address. Depending on the request the proper application should be selected by some rack ...
17
votes
7answers
5k views
Where do you put your Rack middleware files and requires?
I'm in the process of refactoring some logic built into a Rails application into middleware, and one annoyance I've run into is a seeming lack of convention for where to put them.
Currently I've ...
0
votes
1answer
2k views
Automatically encode Rack output with JSON when Content-Type is application/json
I've got a modular Sinatra app and I'd like to encode the output as JSON when the content-type dictates. At the moment I'm doing so manually in my routes:
get 'someroute' do
# content-type is ...
7
votes
2answers
4k views
How do I set a cookie with a (ruby) rack middleware component?
I'm writing a rack middleware component for a rails app that will need to conditionally set cookies. I am currently trying to figure out to set cookies. From googling around it seems like this ...
2
votes
2answers
2k views
Sinatra app as Rails 3 subpath
I'm trying to get a sinatra app as a subpath in my rails 3 app.
Specifically, the resque queuing system has a sinatra based web interface that I would like to have accessible through /resque on my ...
1
vote
3answers
1k views
Rails 3 as Rack middleware
Since Rails is fully compliant with Rack I was wandering how I would set up a rackup file so that a Rails application is just a piece of middleware and then a request could hit another app further ...
2
votes
2answers
303 views
Can you let users upload Sinatra apps and run them inside Rails as middleware?
I want to let users write small custom apps (think themes or plugins on Wordpress) and upload/run them on my site.
I'm thinking about using Sinatra apps for this since it would give the users a lot ...
2
votes
3answers
3k views
set method to PUT in rails XML requests
if I do this:
curl -X POST -H 'Content-type: application/xml' -d '<person>...</person>' 'http://0.0.0.0:3000/people/12?_method=PUT'
I get "Only get, put, and delete requests are ...
6
votes
2answers
4k views
How do I use a Rack middleware only for certain paths?
I'd like to have MyMiddleware run in my Rack app, but only for certain paths. I was hoping to use Rack::Builder or at least Rack::URLMap, but I can't quite figure out how.
This is what I thought ...
11
votes
1answer
8k views
How do I access the Rack environment from within Rails?
I have a Rack application that looks like this:
class Foo
def initialize(app)
@app = app
end
def call(env)
env["hello"] = "world"
@app.call(env)
end
end
After hooking my Rack ...
