I am doing an iPhone application using Rhostudio with Ruby script for coding. Even though I had done authentication code for username and password, without login name and password it is redirecting to next page.

If I try to get the username and password in Controller:do_login it's getting an error msg "error loading page"

My codings in controller.erb:

require 'rho'

require 'rho/rhocontroller'

require 'rho/rhoerror'

require 'helpers/browser_helper'

class SettingsController < Rho::RhoController

include BrowserHelper

def index

@msg = @params['msg']
render :action => :information, 
:back => '/app'

end

def login

@msg = @params['msg']

render :action => :login, :back => '/app'

end


#it creates values given to the attributes

def create

@information = Information.create(@params['information'])

  render :action => :reminder

end 

def auth

 result=Rho::AsyncHttp.post(

 :url => 'http://localhost/juby/welcome.php',

 :body => "operation=login&username=dummy{@params['login']}

  &password=dummy{@params['password']}",

 :callback =>(url_for :action => :login_callback),

 :callback_param => "post=complete" )


 render :action => :wait

 end

def login_callback

 error_code = @params['error_code'].to_i

if error_code == 0

 # run sync if we were successful

 WebView.navigate Rho::RhoConfig.options_path

 SyncEngine.dosync

else
   if error_code == Rho::RhoError::ERR_CUSTOMSYNCSERVER

 @msg = @params['error_message']

end

 if not @msg or @msg.length == 0  

 @msg = Rho::RhoError.new(error_code).message

end


WebView.navigate( 

url_for(:action => :login, :query => {:msg => @msg}) 

)

end 

end

def do_login   

  if @params['login'] and @params['password']

begin

  result=Rho::AsyncHttp.get(    

 :url => "http://localhost/juby/welcome.php",

 )

  @msg=result["body"]

 render :action => :home

 rescue Rho::RhoError => e

 @msg = e.message

  end

  else

@msg = Rho::RhoError.err_message(Rho::RhoError::ERR_UNATHORIZED) unless @msg &&     @msg.length > 4

  render :action => :login

 end

end


 def logout

  SyncEngine.logout

  @msg = "You have been logged out."

  render :action => :login

end

def reset

render :action => :reset

 end

def do_reset

Rhom::Rhom.database_full_reset

SyncEngine.dosync

@msg = "Database has been reset."

redirect :action => :index, :query => {:msg => @msg}

end

def do_sync

SyncEngine.dosync

@msg =  "Sync has been triggered."

redirect :action => :index, :query => {:msg => @msg}

end

end

url contains just a welcome message and it is showing in home page

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.