diff --git a/app/assets/javascripts/login.js b/app/assets/javascripts/login.js new file mode 100644 index 0000000..70a2f44 --- /dev/null +++ b/app/assets/javascripts/login.js @@ -0,0 +1,43 @@ +$("#checkin_menu").show(); +$("#checkin").click( function(e){ + var username = $("#user_email").val(); + var password = $("#user_password").val(); + $.ajax({ + type: 'POST', + url: '/api/v1/checkin', + dataType: 'json', + contentType: 'application/json', + processData: false, + data: JSON.stringify({"username": username, "password": password }), + complete: function() { }, + success: function(data) { + alert("Checked IN!"); + $("#user_email").val(''); + $("#user_password").val(''); + }, + error: function(data,textStatus) { + alert( "Error: " + JSON.parse(data.responseText)["error"]); + } + }) +}); +$("#checkout").click( function(e){ + var username = $("#user_email").val(); + var password = $("#user_password").val(); + $.ajax({ + type: 'POST', + url: '/api/v1/checkout', + dataType: 'json', + contentType: 'application/json', + processData: false, + data: JSON.stringify({"username": username, "password": password }), + complete: function() { }, + success: function(data) { + alert("Checked OUT!"); + $("#user_email").val(''); + $("#user_password").val(''); + }, + error: function(data,textStatus) { + alert( "Error: " + JSON.parse(data.responseText)["error"]); + } + }) +}); diff --git a/app/components/app_tab_panel.rb b/app/components/app_tab_panel.rb index faf4bc8..4268fda 100644 --- a/app/components/app_tab_panel.rb +++ b/app/components/app_tab_panel.rb @@ -6,6 +6,11 @@ class AppTabPanel < Netzke::Basepack::TabPanel c.text = "Sign out #{controller.current_user.email}" if controller.current_user end + action :check_out do |c| + c.icon = :door_out + c.text = "CHECK OUT" if controller.current_user + end + def configure(c) #all users @@ -49,7 +54,7 @@ class AppTabPanel < Netzke::Basepack::TabPanel end c.prevent_header = true - c.tbar = [:sign_out] + c.tbar = [:sign_out, :check_out] c.items = @@app_tab_panel_items super end @@ -58,6 +63,5 @@ class AppTabPanel < Netzke::Basepack::TabPanel #gets js from app_tab_panel/javascripts/sign_out.js c.mixin :sign_out end - end diff --git a/app/components/app_tab_panel/javascripts/sign_out.js b/app/components/app_tab_panel/javascripts/sign_out.js index d7c9bc3..8672024 100644 --- a/app/components/app_tab_panel/javascripts/sign_out.js +++ b/app/components/app_tab_panel/javascripts/sign_out.js @@ -5,5 +5,17 @@ url: '/users/sign_out', method: 'DELETE' }); + }, + onCheckOut: function(){ + Ext.Ajax.request({ + url: '/api/v1/checkout', + method: 'POST', + success: function(response, opts) { + Ext.Ajax.request({ + url: '/users/sign_out', + method: 'DELETE' + }); + } + }); } } diff --git a/app/controllers/api/v1/base_controller.rb b/app/controllers/api/v1/base_controller.rb new file mode 100644 index 0000000..a3ed9c1 --- /dev/null +++ b/app/controllers/api/v1/base_controller.rb @@ -0,0 +1,22 @@ +class Api::V1::BaseController < ActionController::Base + respond_to :json + + before_filter :authenticate_user + + private + def authenticate_user + if params[:username] + user = User.find_for_database_authentication( :email => params[:username] ) + @current_user = user if user && user.valid_password?( params[:password] ) + + if @current_user.nil? + msg = "Username/Password/Token invalid" + render :json => {:error => msg }, :status => 403 and return + end + else + authenticate_user! + @current_user = current_user + end + end +end + diff --git a/app/controllers/api/v1/logs_controller.rb b/app/controllers/api/v1/logs_controller.rb new file mode 100644 index 0000000..b226b24 --- /dev/null +++ b/app/controllers/api/v1/logs_controller.rb @@ -0,0 +1,22 @@ +class Api::V1::LogsController < Api::V1::BaseController + + def checkin + #must use @current_user since user may not have signed in + if @current_user.checked_in? + render :json => { "error" => "You are already checked in."}, :status => 404 and return + else + @current_user.checkin + render :nothing => true, :status => 204 and return + end + end + + def checkout + #must use @current_user since user may not have signed in + if !@current_user.checked_in? + render :json => { "error" => "You were not even checked in."}, :status => 404 and return + else + @current_user.checkout + render :nothing => true, :status => 204 and return + end + end +end diff --git a/app/models/user.rb b/app/models/user.rb index 9b67e65..1db9cb5 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -36,6 +36,8 @@ class User < ActiveRecord::Base user_role.to_s == role.to_s end +### TODO methods below probably belong somewhere else + def total_hours ActsAsLoggable::Log.where( :loggable_type => self.class.to_s, :loggable_id => self.id).sum { |l| (l.end_date - l.start_date)/3600 }.round(2) end @@ -49,4 +51,33 @@ class User < ActiveRecord::Base .sum { |l| (l.end_date - l.start_date)/3600 } .round(2) end + + def checked_in? + log_action = ::ActsAsLoggable::UserAction.find_by_action("CHECKIN") + checked = logs.where( log_action_id: log_action.id). + where("start_date >= ?", Time.zone.now.beginning_of_day). + where("start_date = end_date") + !checked.empty? + end + + def checkin + log_action = ::ActsAsLoggable::UserAction.find_by_action("CHECKIN") + time = Time.now + logs.create( logger_id: self.id, + logger_type: self.class.to_s, + start_date: time, + end_date: time, + log_action_id: log_action.id, + log_action_type: log_action.class.to_s) + save + end + + def checkout + log_action = ::ActsAsLoggable::UserAction.find_by_action("CHECKIN") + checked = logs.where( log_action_id: log_action.id). + where("start_date >= ?", Time.zone.now.beginning_of_day). + where("start_date = end_date").first + checked.end_date = Time.now + checked.save + end end diff --git a/app/views/devise/sessions/new.html.erb b/app/views/devise/sessions/new.html.erb index 6acf013..d275e3f 100644 --- a/app/views/devise/sessions/new.html.erb +++ b/app/views/devise/sessions/new.html.erb @@ -1,6 +1,6 @@ <%= stylesheet_link_tag "bootstrap_and_overrides", :media => "all" %> -

Sign in

+

Velocipede

<%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %>
<%= f.label :email %>
@@ -14,8 +14,15 @@ <% end -%>
<%= f.submit "Sign in" %>
+ + <% end %> + + <%= render "links" %> <% if Rails.env.development? %> diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb index e0d6120..69a4619 100644 --- a/config/initializers/devise.rb +++ b/config/initializers/devise.rb @@ -221,3 +221,9 @@ Devise.setup do |config| # manager.default_strategies(:scope => :user).unshift :some_external_strategy # end end + +#Check in the user if they sign in. (Devise uses Warden) +Warden::Manager.after_authentication do |user,auth,opts| + user.checkin unless user.checked_in? +end + diff --git a/config/routes.rb b/config/routes.rb index 31c9f6e..59ff145 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -4,4 +4,13 @@ Velocipede::Application.routes.draw do netzke root :to => 'site#index' + ########################### + # API Routes + scope 'api', :module => :api do + scope 'v1', :module => :v1 do + post 'checkin' => "logs#checkin", :as => "api_checkin" + post 'checkout' => "logs#checkout", :as => "api_checkout" + end + end + end diff --git a/db/seed/fixtures/acts_as_loggable/user_actions.yml b/db/seed/fixtures/acts_as_loggable/user_actions.yml index f3c3a18..f5e86f3 100644 --- a/db/seed/fixtures/acts_as_loggable/user_actions.yml +++ b/db/seed/fixtures/acts_as_loggable/user_actions.yml @@ -13,3 +13,8 @@ staff: action: STAFF created_at: <%= Time.now %> updated_at: <%= Time.now %> +checkin: + id: 4 + action: CHECKIN + created_at: <%= Time.now %> + updated_at: <%= Time.now %>