0.0
No commit activity in last 3 years
No release in over 3 years
Ruby interface to the Fluther discussion system
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Fluther Ruby/Rails Client

Introduction

This gem provides an interface to the Fluther discussion service. It is intended to be included into your controller (i.e. FlutherController) and called as a before_filter. It handles proxying requests to Fluther and returning the response so that it can be included in your web application.

It’s based on the original Fluther gem but modified to not require Warden or Rack-integration.

Installation

  • Add the simple-fluther gem to your application (i.e. in Gemfile or environment.rb).
  • Create an initializer (e.g. config/initializers/fluther.rb) that sets the following configuration:
class SimpleFluther::Config
  # hostname of the Fluther server for this environment (provided by Fluther)
  fluther_host 'fstage.fluther.com'

  # the route for your app
  prefix '/qna'
	
  # federated API key (provided by Fluther)
  app_key '2b6a0009c414c53e3d4fa8f8c3134d59'

  # what method to call in the controller to get the current user model
  method_to_get_current_user :current_user

  # mapping of attributes in the User model to the Fluther user
  user_fields :id => :id, :name => :name, :email => :email  # (defaults)
end

Rails Integration

In your controller, include the module Fluther::ControllerMethods and add the make_fluther_request before_filter to your target action.

The proxy provides three Rack variables that include the Fluther response: fluther.header, fluther.title, and
fluther.response. The first two (may) contain HTML blocks which should be inserted into the page <head> and <title> blocks,
respectively, and the third is the HTML for the Fluther widget itself.

To integrate the response into your application, you should add an action which is routed from the same path as the Fluther proxy.
For this example, we assume the controller is MainController, the action is fluther, and as above, it is mounted at /qna.
Also, we assume that the application layout includes yield(:head) in the <head> block:

# config/routes.rb
map.fluther '/qna/*_', :controller => 'fluther', :action => 'index'

Your controller might look something like this:

# app/controllers/fluther_controller.rb
class FlutherController < ApplicationController
  include SimpleFluther::ControllerMethods
  before_filter :make_fluther_request, :only => :index
  
  def index
  end
end
# app/views/fluther/index.html.erb
<%
  if (header = request.env['fluther.header']).present?
    content_for :head, header
  end
  if (title = request.env['fluther.title']).present?
    content_for :head, content_tag(:title, title)
  end
%>
<%= request.env['fluther.response'] -%>

You should now be able to start your application, navigate to http://localhost:300/qna and see the Fluther page.

Credits

Based on original Fluther gem by Steve Sloan.