Multiple model search in rails with solr

lrSearching is much easier if you use solr or elastic search, no need to write complex database queries.

If you want to integrate solr with your rails application means there is a gem available https://github.com/sunspot/sunspot

Add to Gemfile:

gem 'sunspot_rails'
gem 'sunspot_solr' # optional pre-packaged Solr distribution for use in development

Bundle it!

bundle install

Generate a default configuration file:

rails generate sunspot_rails:install

If sunspot_solr was installed, start the packaged Solr distribution with:

 bundle exec rake sunspot:solr:start

Then add the following code in model file which you going to search

searchable do
  text :<field_name>
end

In your controller queries

@search = Project.solr_search do
fulltext params[:search]
end
@projects = @search.results

Thats all, if you pass search params from your view file, then solr will give you the relevant projects.

Now I will show you how to search multi models in same querie,

simply add the same

searchable do
 text :<field_name>
end

In model files which you need to search, Then in your controller

@search = Sunspot.search(Project,Comment, File) do |s|
 s.fulltext(params[:search])
end

@result = @search.result

will give you the result from project, file and comment models


			

Run Sinatra along with Rails

Sinatra is much better than rails for writing API codes and small functionalities, We can run sinatra app inside rails application.

Write your sinatra codes inside library folder of rails application, you can call rails application database tables from sinatra app also.

Then on your rails app config.ru

# This file is used by Rack-based servers to start the application.

require ::File.expand_path(‘../config/environment’, __FILE__)

require_relative ‘lib/api’

map ‘/api’ do
run API::SinatraApp.new
end

map ‘/’ do
run Rails.application
end

Put this code, so normal request goes to rails controller and  request url with /api goes to sinatra app. This way we can use both rails app and sinatra app together.

 

Easy Ruby on Rails install

Whenever I setup new Linux for developing rails application. I feel bit tired of installing all necessary things for rails development.

For that I have written one shell script, that install most of the things requires for rails development. If you want this lazy thing. You can check here

https://github.com/navinspm/easy_rails

And use it , fork the code and update if you feel some thing to be added.

Thanks.

SOA – Service Oriented Architecture for Dummies

SOA –  Service Oriented Architecture

  What is SOA?

before going to SOA you need to know about what is service in web. Service is a bit of code (say so) that get the input  data which you have given and process it and give the resultant data in any format (most probably XML,JSON). The service can be written in any language(java, ruby, etc..).

If you take web application there mostly two kind of design patterns monolithic architecture and service oriented architecture.

Now consider a banking application, if its a monolithic architecture then entire process like log in, account details, money transfer, loan application are done in same server.

If its a SOA then each module is run in different server and they communicate with each other. And the customer views the collected details from all the servers.

fn_soa-fn1

 Where we use SOA?

If its enterprise level application, it requires API module to be implemented,there are many number of modules to be implemented in application, Needs to use different programming languages together then its better to implement SOA.

Advantages of using SOA

1. Development made easy – if there is a fresh developer comes to project, he don’t want to go through entire project. He can start to work with a service.

2.Platform independent- In SOA you can use any language you want  you can use java in one service and ruby in another service means also they can communicate with each other. So you don’t need particular language developer for developing.Then parallel development made easy.

3. Re-usability – Each service runs independently so you can use any service any where.

4.Higher availability – As previously said each service runs independently , if any service failures that part of the application only stops to work. So our web application is probably always available.

5. Cost Reduction – Definitely it will reduce the initial and maintenance cost if its a big and high scalability application

Disadvantages

1. Complex structure – Since each service placed in different place, you have  make a mechanism to communicate each service together.

2. Data – We cannot transfer large data from one service to another service, mostly the services communicate by using http request so we can send a small amount of data only.

3. Cost – If its small application , if you use SOA then it will increase the maintenance cost because it uses many servers and we have maintain many servers.

Making the environment for developing android application in Ubuntu

Hi all,

Its better to have IDE for creating android application rather than using stand alone SDK . I have choosen andorid studio as IDE because it will be the official IDE by few months as android says.

First you need to download android SDK before installing android studio get it from here https://developer.android.com/sdk/installing/index.html?pkg=tools

After downloading unzip the archive and keep as its in a folder

Open a terminal window.

Type the following comments

  • sudo apt-add-repository ppa:paolorotolo/android-studio
  • sudo apt-get update
  • sudo apt-get install android-studio

after installing android studio

open terminal and go to the android studio folder. Probably in opt/android_studio

  • cd opt/android_studio/bin
  • ./studio.sh

now your android studio will starts in menu go to

configure -> project defaults ->  Project structure and then select the folder where you extracted the SDK , If you need install some additional packages prompt by android studio

then your ready to go with creating application by selecting new project , and for first time android studio will download and install some additional packages, sdk

Now you are ready to hit the android world 🙂

My new gem – label_better_rails

Hi after a success of my previous gem sticky-rails ( gemmified version of sticky jquery plug-in)  , I have created another gem and this also a gemmified version of another beautiful jquery plug-in label_better ,
This will help you to add label_better gem to your rails application assets pipeline quickly , Home page for this gem is https://github.com/navinspm/label_better_rails

Thanks to http://www.thepetedesign.com/demos/label_better_demo.html

Label your form input like a boss with beautiful animation and without taking up space

Screen shot

Installation

Add this line to your application’s Gemfile:

gem 'label_better_rails'

And then execute:

$ bundle

Or install it yourself as:

$ gem install label_better_rails

label_better is a jquery_plug in that gives beautiful animation to your label , so please check if you are using the jquery on your rails app, and add jquery.label_better in your application.js

Your app/assets/javascripts/application.js appear like:

//= require jquery
//= require jquery_ujs
//= require jquery.label_better
//= require_tree .

Then in your view file where you want to add label_better just remove our default rails label then give a class name and the placeholder to the field example

    <%= f.text_field :firstname ,:class => 'label_better', :placeholder => 'firstname'%><br/><br/>
    <%= f.text_field :lastname ,:class => 'label_better', :placeholder => 'lastname'%><br/><br/>
    <%= f.email_field :email,:class => 'label_better', :placeholder => 'email' %><br/><br/>
    <%= f.phone_field :phonenumber,:class => 'label_better', :placeholder => 'Mobile' %><br/><br/>
    <%= f.url_field :website ,:class => 'label_better', :placeholder => 'Website'%><br/><br/>
    <%= f.password_field :password ,:class => 'label_better', :placeholder => 'confirmpassword'%><br/><br/>
    <%= f.password_field :confirmpassword , :class => 'label_better', :placeholder => 'confirmpassword' %>

then add javascript in your view file

$("input.label_better").label_better({
    position: "top", 
    animationTime: 500, 
    easing: "ease-in-out",
    offset: 5, 
    hidePlaceholderOnFocus: true 
  });

Change this values depends on your need

Contributing

  1. Fork it ( https://github.com/[my-github-username]/label_better_rails/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Collection Of Database Queries in Rails

Retrieving a Single Object

client = Client.find(10)

client = Client.take

client = Client.first

client = Client.last

Client.find_by first_name: ‘Lifo’

Client.where(first_name: ‘Lifo’).take

Client.find_by! first_name: ‘Lifo’

Retrieving Multiple Objects

client = Client.find([1, 10])

Client.take(2)

Client.first(2)

Client.last(2)

Retrieving Multiple Objects in Batches

User.all.each do |user|

 NewsLetter.weekly_deliver(user)

end

Conditions

Pure String Conditions

Client.where(“orders_count = ‘2’”)

Client.where(“orders_count = ?”, params[:orders])

Client.where(“orders_count = ?”, params[:orders])

Client.where(“orders_count = #{params[:orders]}”)

Client.where(orders_count: [1,3,5])

Post.where.not(author: author)

Ordering

Client.order(:created_at)

# OR

Client.order(“created_at”)

Selecting Specific Fields

Client.select(:name).distinct

Limit and Offset

Client.limit(5)

Client.limit(5).offset(30)

Group

Order.select(“date(created_at) as ordered_date, sum(price) as total_price”).group(“date(created_at)”)

Having

Order.select(“date(created_at) as ordered_date, sum(price) as total_price”).

 group(“date(created_at)”).having(“sum(price) > ?”, 100)

Overriding Conditions

Post.where(‘id > 10’).limit(20).order(‘id asc’).except(:order)

Post.where(‘id > 10’).limit(20).order(‘id desc’).only(:order, :where)

Client.where(“orders_count > 10”).order(:name).reverse_order

Null Relation

Post.none

Readonly Objects

client = Client.readonly.first

client.visits += 1

client.save

Optimistic Locking

c1 = Client.find(1)

c2 = Client.find(1)

c1.first_name = “Michael”

c1.save

c2.name = “should fail”

c2.save # Raises an ActiveRecord::StaleObjectError

Find or Build a New Object

find_or_create_by

Client.find_or_create_by(first_name: ‘Andy’)

find_or_initialize_by

The find_or_initialize_by method will work just like find_or_create_by but it will call new instead of create. This means that a new model instance will be created in memory but won’t be saved to the database. Continuing with the find_or_create_by example, we now want the client named ‘Nick’:

Finding by SQL

Client.find_by_sql(“SELECT * FROM clients

 INNER JOIN orders ON clients.id = orders.client_id

 ORDER BY clients.created_at desc”)

Existence of Objects

Client.exists?(1)

Calculations

Client.coun

Client.where(first_name: ‘Ryan’).count

Client.includes(“orders”).where(first_name: ‘Ryan’, orders: { status: ‘received’ }).count

Client.average(“orders_count”)

Client.minimum(“age”)

Client.maximum(“age”)

Client.sum(“orders_count”)

Form Helpers

<%= form_tag do %>

A Generic Search Form

<%= form_tag(“/search”, method: “get”) do %>

 <%= label_tag(:q, “Search for:”) %>

 <%= text_field_tag(:q) %>

 <%= submit_tag(“Search”) %>

<% end %>

Checkboxes

<%= check_box_tag(:pet_dog) %>

<%= label_tag(:pet_dog, “I own a dog”) %>

<%= check_box_tag(:pet_cat) %>

<%= label_tag(:pet_cat, “I own a cat”) %>

Radio Buttons

<%= radio_button_tag(:age, “child”) %>

<%= label_tag(:age_child, “I am younger than 21”) %>

<%= radio_button_tag(:age, “adult”) %>

<%= label_tag(:age_adult, “I’m over 21”) %>

Helpers

<%= text_area_tag(:message, “Hi, nice site”, size: “24×6”) %>

<%= password_field_tag(:password) %>

<%= hidden_field_tag(:parent_id, “5”) %>

<%= search_field(:user, :name) %>

<%= telephone_field(:user, :phone) %>

<%= date_field(:user, :born_on) %>

<%= datetime_field(:user, :meeting_time) %>

<%= datetime_local_field(:user, :graduation_day) %>

<%= month_field(:user, :birthday_month) %>

<%= week_field(:user, :birthday_week) %>

<%= url_field(:user, :homepage) %>

<%= email_field(:user, :address) %>

<%= color_field(:user, :favorite_color) %>

<%= time_field(:task, :started_at) %>

<%= number_field(:product, :price, in: 1.0..20.0, step: 0.5) %>

<%= range_field(:product, :discount, in: 1..100) %>

The Select and Option Tags

<%= select_tag(:city_id, ‘<option value=”1″>Lisbon</option>…’) %>

TIme zone

<%= time_zone_select(:person, :time_zone) %>

Country select

https://github.com/stefanpenner/country_select

Using Date and Time Form

<%= select_date Date.today, prefix: :start_date %>

<%= select_year(2009) %>

<%= select_year(Time.now) %>

Uploading Files

<%= f.file_field :picture %>

layout helpers

<%= javascript_include_tag “main”, “columns” %>

<%= stylesheet_link_tag “http://example.com/main.css” %>

<%= image_tag “header.png” %>

<%= video_tag “movie.ogg” %>

<%= audio_tag “music.mp3” %>

Audio Streaming in Ubuntu using Shoutcast and Internet DJ Control

     If you ever want to stream your rails application audio file using shoutcast I will show you how to do this

firt install and configure shoutcast
cd /tmp
wget http://download.nullsoft.com/shoutcast/tools/sc_serv_1.9.8_Linux.tar.gz

If you get error while trying to execute this command then you don’t have wget command installed to your system. For Debian and Ubunutu use the following command to install it:

Code:
apt-get install wget

Again If you get the error then go to the shoutcast site then download the package

 Next we need to create the folder for our shoutcast server and extract the archive

Code:
mkdir /home/shoutcast
tar -zxf sc_serv_1.9.8_Linux.tar.gz -C ./home/shoutcast

Navigate to the shoutcast folder and clear the config file because it has comments and configuration codes it may confuse you if you see them first time any way its better to clear the file

Code:
cd /home/shoutcast
echo > sc_serv.conf

5. Open the file sc_serv.conf

Code:
nano sc_serv.conf

Paste the following text

Code:
 MaxUser=32
 Password=changeme
 PortBase=8000
LogFile=sc_serv.log
RealTime=1
ScreenLog=1
ShowLastSongs=10
SrcIP=ANY
DestIP=ANY
Yport=80
NameLookups=0
 AdminPassword=adminpass
AutoDumpUsers=0
AutoDumpSourceTime=30
PublicServer=default
AllowRelay=Yes
AllowPublicRelay=Yes
MetaInterval=32768

You should modify these settings:

A. Change the MaxUsers , It can be many users but set minimum as possible
B. Set the Password to a value that you know because you need it to connect to the server in order to stream music to it.
C. Optionally you can change the port by changing the PortBase to some different port.
D. AdminPassword is the web interface password. Web interface is used for banning and kicking users from the server.

6. Start the server

Code:
screen
./sc_serv

Thats all next is to go for broadcaster software in windows and mac SAM broadcaster is a excellent software we have but If you  want to use ubuntu then InternetDJcontrol shortely called as IDJC

IDJC

first we need to install idjc

Code:

sudo apt-get install jackd qjackctl

then

Open Limits.conf

sudo gedit /etc/security/limits.conf

Add the following lines into the file :

@audio - rtprio 99
@audio - memlock unlimited
@audio - nice -19

then run idjc you can find it by searching IDJC in ubuntu search bar This is GUI of IDJC

 main

Go to view-> output you will see the window like this there go to configuration -> connection -> new and fill the details as shown then click OK

host

then in configuration -> format fill the details as follows

configuration image

configuration setting

If all set to correct then above localhost:8000 (8000 may change depends on port you set)  will appear as shown if not check the settings againlocalhost then click the localhost:8000 button if everything goes well the button has need to be stayed as pressed like this  then the green light will glow

connectedand that’s all you may listen your radio on shoutcast.com by searching your radio name which you given at the first time you starts the IDJC , if the green indicator doesnot glow check the shoutcast server running and see the serv.conf file port setting

If you want to use it in your rails application the jplayer fetch the stream and play it well check it on their website jplayer stream player

 

Thank you for reading me…………………

 

Easy way to deploy Rails 4 application in Unicorn with Nginx

In this post I will show you how to host our rails application with unicorn and nginx

The first step is obviously to install nginx for that go to your control terminal then type

sudo apt-get install “nginx”

After the installation go to /etc/nginx/sites_enabled/ – (or wherever you installed nginx)

in this sites_enabled folder you have default.conf file delete that file and create new file called nginx.conf

server
{
listen 80 default;
#server_name example.com;
root /home/ideology/test_server_nginx/public;
try_files $uri/index.html $uri @unicorn;
location @unicorn {
proxy_pass http://localhost:3000;
}

error_page 500 501 502 503 /404.html;
}

save the file with above code

Now In your rails application folder gemfile.rb add gem “unicorn” and run bundle install

Then start your rails application with unicorn with port 3000

    /application_folder/unicorn -p 3000

Then you can seen your application in browser with nginx server at port 80

Thats all! very simple yes?……

To change environment to production

RAILS_ENV=production rake db:migrate

and then in your boot.rb file add this lines

require ‘securerandom’
ENV[‘SECRET_KEY_BASE’] = SecureRandom.hex

then start your rails application unicorn server

RAILS_ENV=production unicorn -p 3000

And thats all your environment is changed to production now ,

But this is just a fast start up only this is not the correct solution to host your application you need additionally unicorn configuration files for further reference http://unicorn.bogomips.org/