Sha256: 98a040f95cb3ac1ba1774e611317e82804fc67f9a62f86974a3c780a1d69ebb4

Contents?: true

Size: 1.8 KB

Versions: 10

Compression:

Stored size: 1.8 KB

Contents

# frozen_string_literal: true

require_relative '../utils/query_builder'

module FinApps
  module REST
    class Operators < FinAppsCore::REST::Resources
      include FinApps::Utils::QueryBuilder

      def list(params=nil)
        return super if params.nil?
        raise FinAppsCore::InvalidArgumentsError.new 'Invalid argument: params' unless params.is_a? Hash
        super build_query_path(end_point, params)
      end

      def show(id)
        not_blank(id, :operator_id)

        super id
      end

      def create(params, path=nil)
        not_blank(params, :params)
        super params, path
      end

      def update(id, params)
        not_blank(id, :operator_id)
        not_blank(params, :params)

        path = "#{end_point}/#{ERB::Util.url_encode(id)}"
        super params, path
      end

      def update_password(params)
        # update password for current operator, need authorization session in header
        not_blank(params, :params)
        raise FinAppsCore::InvalidArgumentsError.new 'Invalid argument: params.' unless validates params
        path = "#{end_point}/password/change"

        create params, path
      end

      def destroy(id)
        not_blank(id, :operator_id)
        super id
      end

      private

      def validates(params)
        params.key?(:password) && params[:password] && params.key?(:password_confirm) && params[:password_confirm]
      end

      def build_filter(params)
        filter = {}
        filter.merge!(search_query(params[:searchTerm])) if params[:searchTerm]
        filter.merge!(role_query(params[:role])) if params[:role]
        filter
      end

      def search_query(term)
        {"last_name": term}
      end

      def role_query(role)
        role.is_a?(Array) ? {"role": {"$in": role.map(&:to_i)}} : {"role": role.to_i}
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
finapps-4.0.3 lib/finapps/rest/operators.rb
finapps-4.0.2 lib/finapps/rest/operators.rb
finapps-4.0.1 lib/finapps/rest/operators.rb
finapps-3.0.7 lib/finapps/rest/operators.rb
finapps-3.0.6 lib/finapps/rest/operators.rb
finapps-3.0.5 lib/finapps/rest/operators.rb
finapps-3.0.4 lib/finapps/rest/operators.rb
finapps-3.0.3 lib/finapps/rest/operators.rb
finapps-3.0.2 lib/finapps/rest/operators.rb
finapps-3.0.1 lib/finapps/rest/operators.rb