Logux::Rack
This gem provides Logux back-end protocol support for Rack-based applications, including Ruby on Rails. It enables Logux Server integration for full-duplex client-server communication.
Installation
Add this line to your application's Gemfile:
gem 'logux-rack'And then execute:
bundle installUsage
Here is a minimal Rack configuration to start new Logux::Rack server:
# config.ru
require 'logux/rack'
run Logux.applicationNote that the HTTP response streaming depends on the web server used to serve the application. Use a server with streaming capability. Puma, for instance:
gem install pumaStart the server:
puma config.ruIt is possible to mount Logux::Rack server within an existing Rails application. First of all, you will need to configure Logux by defining a server address in an initializer. For example, config/initializers/logux.rb:
Logux.configuration do |config|
config.logux_host = 'http://localhost:31338'
endMount Logux::Rack in routes:
Rails.application.routes.draw do
mount Logux::Rack::App => '/'
endAfter this, POST requests to /logux will be processed by LoguxController. You can redefine it or inherit from, if it necessary, for example, for implementing custom authorization flow.
Here is another routing example for Roda application routing:
class MyApp < Roda
route do |r|
r.is 'logux' { r.run Logux::Rack::App }
end
endHanami configuration example:
# config/environment.rb
Hanami.configure do
mount Logux::Rack::App, at: '/'
endLogux::Rack can also be embedded into another Rack application using Rack::Builder:
# config.ru
require 'logux/rack'
app = Rack::Builder.new do
use Rack::CommonLogger
map '/logux' { run Logux::Rack::App }
# ...
end
run appLogux::Rack will try to find Action for the specific message from Logux Server. For example, for project/rename action, you should define Action::Project class, inherited from Logux::Action base class, and implement rename method.
You can execute rake logux:actions to get the list of available action types, or rake logux:channels to get the list of available channels. Use optional path parameter to limit the search scope: rake logux:actions[lib/logux/actions]
Development with Docker
Install gem dependencies:
docker-compose run app bundle installRun the specs:
docker-compose run app bundle exec rspecPerform integration test:
cd test/app
bundle exec rails db:reset && bundle exec rails server
# Execute from another terminal:
cd test
yarn && npx @logux/backend-test http://server:3000/loguxRun Rubocop:
docker-compose run app bundle exec rubocopLicense
The gem is available as open source under the terms of the MIT License.