Wednesday, 8 October 2014

Custom routing for restricting sidekiq pages in rails.

After integrating sidekiq with rails . It provides the web access to manage the processes/jobs . User can view Scheduled jobs from "Scheduled" tab.

Here is the screenshot of the sidekiq page.  This will be more easier to understand with this page.


Here we can see the jobs are being listed in the table. These jobs are in queue to be scheduled.

These listed jobs have some individual checkbox to select each jobs. We can delete the jobs at any point. Also deschedule from the site . Below is the "Delete" button to delete the jobs .


If we will view it to pubic it will be miss-utilized.

What we can do?

We can restrict the url from routes. Below is the routes for sidekiq.

require 'sidekiq/web'

Myapp::Application.routes.draw do
     mount Sidekiq::Web, at: '/sidekiq'
end

This is the general route for sidekiq. All the routes are generated from the same route configurations.

If we will do  $rake routes   in our rails console, we will get the following routes
 sidekiq_web     /sidekiq           Sidekiq::Web

How to restrict?

Example 1-

We can use a lambda call for the specific user group or emails. For example :

authenticate :user, lambda { |u| u.is_super_admin? || u.email == 'your@email.com'} do
    mount Sidekiq::Web, at: '/sidekiq'

end

Here it is restricting through the user group as if the user is super admin then it will show to the user.
Also it can be opened to a specific user email.

Example 2

Through Restful Authentication

Checks a User model instance that responds to admin?

#lib/admin_constraint.rb
class AdminConstraint
    def matches?(request)
        return false unless request.session[:user_id]
        user = User.find request.session[:user_id]
        user && user.admin?
    end
end

#config/routes.rb
require "admin_constraint"
mount Sidekiq::Monitor::Engine => '/sidekiq', :constraints => AdminConstraint.new



Also we can follow all the examples explained in
 Sidekiq wiki : https://github.com/mperham/sidekiq/wiki/Monitoring

Thanks :)

11 comments:

  1. Thank you.Well it was nice post and very helpful information on Ruby on Rails Online Course Bangalore

    ReplyDelete
  2. دليلك الشامل لبيت صحي ومثالي في الجبيل

    شركة تنظيف بالجبيل

    مقال ممتع يأخذ القارئ في رحلة تحول شاملة لكافة أركان البيت، يقدم فيها أفكاراً عصرية للترتيب والتنظيف تجعل مساحاتك السكنية أكثر إشراقاً وراحة ونظافة تدوم طويلاً.

    شركة مكافحة الحمام بالجبيل

    مقال شيق يجمع بين فهم سلوكيات الطيور والحلول الحديثة، يأخذ القارئ في جولة لحماية النوافذ والواجهات وإعادة الهدوء والجمال للمبنى بأسلوب سلس يضمن الراحة التامة.

    شركة تسليك مجاري بالجبيل

    مقال عملي وسلس يناقش الأسباب والممارسات اليومية لتفادي الانسدادات، ويكشف للقارئ خططاً وحلولاً سريعة تُجنبه الأعطال الكبيرة والروائح الكريهة وتوفر عليه الكثير من الجهد والوقت.

    مكافحة حشرات بالجبيل

    مقال شائق يجمع بين التوعية الصحية والخطوات الوقائية المبتكرة، يأخذ القارئ في رحلة لتأمين البيت وتوفير بيئة صحية خالية تماماً من الآفات الضارة بأسلوب مبسط ومشوق.

    شركة تنظيف خزانات بالجبيل

    مقال يمزج بين الصحة العامة والحلول التطبيقية، ليأخذ القارئ في جولة حول ضمان نقاء كل قطرة ماء واستدامة سلامة العائلة بأسلوب جذاب وسلس.

    شركة تنظيف سجاد بالجبيل

    مقال ممتع يقدم أسرار العناية بالأنسجة الثقيلة والتخلص من الأتربة العميقة، ليأخذك في تجربة مميزة لإعادة الحيوية والألوان المشرقة لسجاد بيتك وجعله كأنه جديد.

    شركة عزل اسطح بالجبيل

    مقال شيق يوضح أهمية حماية المباني من التغيرات الجوية وتسربات الأمطار بأسلوب ذكي، ويُساعد القارئ على استكشاف الطرق الفعالة لتوفير الطاقة وحفظ سلامة المنشأة لسنوات قادمة.

    شركة تنظيف مجالس بالجبيل

    مقال ممتع يستعرض خطوات العناية بالأثاث والأقمشة وكيفية التخلص من أصعب البقع، ويمنح القارئ نظرة عميقة لإعادة اللمعان والانتعاش لمجلسك ليكون جاهزاً لاستقبال الضيوف بأبهى صورة.

    شركة تنظيف مكيفات بالجبيل

    مقال شيق يستعرض آليات تحسين جودة الهواء وتوفير استهلاك الكهرباء، ويمنح القارئ معرفة قيمة حول إطالة عمر الأجهزة وتوفير أجواء منعشة ومثالية في المكان.

    vmvt tjh nmm

    ReplyDelete