logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

devise.rb (16567B)


  1. Warden::Manager.after_set_user except: :fetch do |user, warden|
  2. if user.session_active?(warden.cookies.signed['_session_id'] || warden.raw_session['auth_id'])
  3. session_id = warden.cookies.signed['_session_id'] || warden.raw_session['auth_id']
  4. else
  5. session_id = user.activate_session(warden.request)
  6. end
  7. warden.cookies.signed['_session_id'] = {
  8. value: session_id,
  9. expires: 1.year.from_now,
  10. httponly: true,
  11. }
  12. end
  13. Warden::Manager.after_fetch do |user, warden|
  14. if user.session_active?(warden.cookies.signed['_session_id'] || warden.raw_session['auth_id'])
  15. warden.cookies.signed['_session_id'] = {
  16. value: warden.cookies.signed['_session_id'] || warden.raw_session['auth_id'],
  17. expires: 1.year.from_now,
  18. httponly: true,
  19. }
  20. else
  21. warden.logout
  22. throw :warden, message: :unauthenticated
  23. end
  24. end
  25. Warden::Manager.before_logout do |_, warden|
  26. SessionActivation.deactivate warden.cookies.signed['_session_id']
  27. warden.cookies.delete('_session_id')
  28. end
  29. module Devise
  30. mattr_accessor :pam_authentication
  31. @@pam_authentication = false
  32. mattr_accessor :pam_controlled_service
  33. @@pam_controlled_service = nil
  34. mattr_accessor :check_at_sign
  35. @@check_at_sign = false
  36. mattr_accessor :ldap_authentication
  37. @@ldap_authentication = false
  38. mattr_accessor :ldap_host
  39. @@ldap_host = nil
  40. mattr_accessor :ldap_port
  41. @@ldap_port = nil
  42. mattr_accessor :ldap_method
  43. @@ldap_method = nil
  44. mattr_accessor :ldap_base
  45. @@ldap_base = nil
  46. mattr_accessor :ldap_uid
  47. @@ldap_uid = nil
  48. mattr_accessor :ldap_bind_dn
  49. @@ldap_bind_dn = nil
  50. mattr_accessor :ldap_password
  51. @@ldap_password = nil
  52. mattr_accessor :ldap_tls_no_verify
  53. @@ldap_tls_no_verify = false
  54. class Strategies::PamAuthenticatable
  55. def valid?
  56. super && ::Devise.pam_authentication
  57. end
  58. end
  59. end
  60. Devise.setup do |config|
  61. config.warden do |manager|
  62. manager.default_strategies(scope: :user).unshift :ldap_authenticatable if Devise.ldap_authentication
  63. manager.default_strategies(scope: :user).unshift :pam_authenticatable if Devise.pam_authentication
  64. manager.default_strategies(scope: :user).unshift :two_factor_authenticatable
  65. manager.default_strategies(scope: :user).unshift :two_factor_backupable
  66. end
  67. # The secret key used by Devise. Devise uses this key to generate
  68. # random tokens. Changing this key will render invalid all existing
  69. # confirmation, reset password and unlock tokens in the database.
  70. # Devise will use the `secret_key_base` on Rails 4+ applications as its `secret_key`
  71. # by default. You can change it below and use your own secret key.
  72. # config.secret_key = '2f86974c4dd7735170fd70fbf399f7a477ffd635ef240d07a22cf4bd7cd13dbae17c4383a2996d0c1e79a991ec18a91a17424c53e4771adb75a8b21904bd1403'
  73. # ==> Mailer Configuration
  74. # Configure the e-mail address which will be shown in Devise::Mailer,
  75. # note that it will be overwritten if you use your own mailer class
  76. # with default "from" parameter.
  77. # config.mailer_sender = ENV['SMTP_FROM_ADDRESS'] || 'notifications@localhost'
  78. # Configure the class responsible to send e-mails.
  79. config.mailer = 'UserMailer'
  80. # ==> ORM configuration
  81. # Load and configure the ORM. Supports :active_record (default) and
  82. # :mongoid (bson_ext recommended) by default. Other ORMs may be
  83. # available as additional gems.
  84. require 'devise/orm/active_record'
  85. # ==> Configuration for any authentication mechanism
  86. # Configure which keys are used when authenticating a user. The default is
  87. # just :email. You can configure it to use [:username, :subdomain], so for
  88. # authenticating a user, both parameters are required. Remember that those
  89. # parameters are used only when authenticating and not when retrieving from
  90. # session. If you need permissions, you should implement that in a before filter.
  91. # You can also supply a hash where the value is a boolean determining whether
  92. # or not authentication should be aborted when the value is not present.
  93. # config.authentication_keys = [:email]
  94. # Configure parameters from the request object used for authentication. Each entry
  95. # given should be a request method and it will automatically be passed to the
  96. # find_for_authentication method and considered in your model lookup. For instance,
  97. # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
  98. # The same considerations mentioned for authentication_keys also apply to request_keys.
  99. # config.request_keys = []
  100. # Configure which authentication keys should be case-insensitive.
  101. # These keys will be downcased upon creating or modifying a user and when used
  102. # to authenticate or find a user. Default is :email.
  103. config.case_insensitive_keys = [:email]
  104. # Configure which authentication keys should have whitespace stripped.
  105. # These keys will have whitespace before and after removed upon creating or
  106. # modifying a user and when used to authenticate or find a user. Default is :email.
  107. config.strip_whitespace_keys = [:email]
  108. # Tell if authentication through request.params is enabled. True by default.
  109. # It can be set to an array that will enable params authentication only for the
  110. # given strategies, for example, `config.params_authenticatable = [:database]` will
  111. # enable it only for database (email + password) authentication.
  112. # config.params_authenticatable = true
  113. # Tell if authentication through HTTP Auth is enabled. False by default.
  114. # It can be set to an array that will enable http authentication only for the
  115. # given strategies, for example, `config.http_authenticatable = [:database]` will
  116. # enable it only for database authentication. The supported strategies are:
  117. # :database = Support basic authentication with authentication key + password
  118. config.http_authenticatable = [:pam, :database]
  119. # If 401 status code should be returned for AJAX requests. True by default.
  120. # config.http_authenticatable_on_xhr = true
  121. # The realm used in Http Basic Authentication. 'Application' by default.
  122. # config.http_authentication_realm = 'Application'
  123. # It will change confirmation, password recovery and other workflows
  124. # to behave the same regardless if the e-mail provided was right or wrong.
  125. # Does not affect registerable.
  126. # See : https://github.com/plataformatec/devise/wiki/How-To:-Using-paranoid-mode,-avoid-user-enumeration-on-registerable
  127. config.paranoid = true
  128. # By default Devise will store the user in session. You can skip storage for
  129. # particular strategies by setting this option.
  130. # Notice that if you are skipping storage for all authentication paths, you
  131. # may want to disable generating routes to Devise's sessions controller by
  132. # passing skip: :sessions to `devise_for` in your config/routes.rb
  133. config.skip_session_storage = [:http_auth]
  134. # By default, Devise cleans up the CSRF token on authentication to
  135. # avoid CSRF token fixation attacks. This means that, when using AJAX
  136. # requests for sign in and sign up, you need to get a new CSRF token
  137. # from the server. You can disable this option at your own risk.
  138. # config.clean_up_csrf_token_on_authentication = true
  139. # ==> Configuration for :database_authenticatable
  140. # For bcrypt, this is the cost for hashing the password and defaults to 10. If
  141. # using other encryptors, it sets how many times you want the password re-encrypted.
  142. #
  143. # Limiting the stretches to just one in testing will increase the performance of
  144. # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
  145. # a value less than 10 in other environments. Note that, for bcrypt (the default
  146. # encryptor), the cost increases exponentially with the number of stretches (e.g.
  147. # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation).
  148. config.stretches = Rails.env.test? ? 1 : 10
  149. # Setup a pepper to generate the encrypted password.
  150. # config.pepper = '104d16705f794923e77c5e5167b52452d00646dc952a2d30b541c24086e647012c7b9625f253c51912e455981e503446772973d5f1638631196c819d7137fad4'
  151. # Send a notification to the original email when the user's email is changed.
  152. config.send_email_changed_notification = true
  153. # Send a notification email when the user's password is changed
  154. config.send_password_change_notification = true
  155. # ==> Configuration for :confirmable
  156. # A period that the user is allowed to access the website even without
  157. # confirming their account. For instance, if set to 2.days, the user will be
  158. # able to access the website for two days without confirming their account,
  159. # access will be blocked just in the third day. Default is 0.days, meaning
  160. # the user cannot access the website without confirming their account.
  161. # config.allow_unconfirmed_access_for = 2.days
  162. # A period that the user is allowed to confirm their account before their
  163. # token becomes invalid. For example, if set to 3.days, the user can confirm
  164. # their account within 3 days after the mail was sent, but on the fourth day
  165. # their account can't be confirmed with the token any more.
  166. # Default is nil, meaning there is no restriction on how long a user can take
  167. # before confirming their account.
  168. config.confirm_within = 2.days
  169. # If true, requires any email changes to be confirmed (exactly the same way as
  170. # initial account confirmation) to be applied. Requires additional unconfirmed_email
  171. # db field (see migrations). Until confirmed, new email is stored in
  172. # unconfirmed_email column, and copied to email column on successful confirmation.
  173. config.reconfirmable = true
  174. # Defines which key will be used when confirming an account
  175. # config.confirmation_keys = [:email]
  176. # ==> Configuration for :rememberable
  177. # The time the user will be remembered without asking for credentials again.
  178. config.remember_for = 1.year
  179. # Invalidates all the remember me tokens when the user signs out.
  180. config.expire_all_remember_me_on_sign_out = true
  181. # If true, extends the user's remember period when remembered via cookie.
  182. # config.extend_remember_period = false
  183. # Options to be passed to the created cookie. For instance, you can set
  184. # secure: true in order to force SSL only cookies.
  185. config.rememberable_options = { secure: true }
  186. # ==> Configuration for :validatable
  187. # Range for password length.
  188. config.password_length = 8..72
  189. # Email regex used to validate email formats. It simply asserts that
  190. # one (and only one) @ exists in the given string. This is mainly
  191. # to give user feedback and not to assert the e-mail validity.
  192. # config.email_regexp = /\A[^@]+@[^@]+\z/
  193. # ==> Configuration for :timeoutable
  194. # The time you want to timeout the user session without activity. After this
  195. # time the user will be asked for credentials again. Default is 30 minutes.
  196. # config.timeout_in = 30.minutes
  197. # ==> Configuration for :lockable
  198. # Defines which strategy will be used to lock an account.
  199. # :failed_attempts = Locks an account after a number of failed attempts to sign in.
  200. # :none = No lock strategy. You should handle locking by yourself.
  201. # config.lock_strategy = :failed_attempts
  202. # Defines which key will be used when locking and unlocking an account
  203. # config.unlock_keys = [:email]
  204. # Defines which strategy will be used to unlock an account.
  205. # :email = Sends an unlock link to the user email
  206. # :time = Re-enables login after a certain amount of time (see :unlock_in below)
  207. # :both = Enables both strategies
  208. # :none = No unlock strategy. You should handle unlocking by yourself.
  209. # config.unlock_strategy = :both
  210. # Number of authentication tries before locking an account if lock_strategy
  211. # is failed attempts.
  212. # config.maximum_attempts = 20
  213. # Time interval to unlock the account if :time is enabled as unlock_strategy.
  214. # config.unlock_in = 1.hour
  215. # Warn on the last attempt before the account is locked.
  216. # config.last_attempt_warning = true
  217. # ==> Configuration for :recoverable
  218. #
  219. # Defines which key will be used when recovering the password for an account
  220. # config.reset_password_keys = [:email]
  221. # Time interval you can reset your password with a reset password key.
  222. # Don't put a too small interval or your users won't have the time to
  223. # change their passwords.
  224. config.reset_password_within = 6.hours
  225. # When set to false, does not sign a user in automatically after their password is
  226. # reset. Defaults to true, so a user is signed in automatically after a reset.
  227. config.sign_in_after_reset_password = false
  228. # ==> Configuration for :encryptable
  229. # Allow you to use another encryption algorithm besides bcrypt (default). You can use
  230. # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
  231. # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
  232. # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
  233. # REST_AUTH_SITE_KEY to pepper).
  234. #
  235. # Require the `devise-encryptable` gem when using anything other than bcrypt
  236. # config.encryptor = :sha512
  237. # ==> Scopes configuration
  238. # Turn scoped views on. Before rendering "sessions/new", it will first check for
  239. # "users/sessions/new". It's turned off by default because it's slower if you
  240. # are using only default views.
  241. # config.scoped_views = false
  242. # Configure the default scope given to Warden. By default it's the first
  243. # devise role declared in your routes (usually :user).
  244. # config.default_scope = :user
  245. # Set this configuration to false if you want /users/sign_out to sign out
  246. # only the current scope. By default, Devise signs out all scopes.
  247. # config.sign_out_all_scopes = true
  248. # ==> Navigation configuration
  249. # Lists the formats that should be treated as navigational. Formats like
  250. # :html, should redirect to the sign in page when the user does not have
  251. # access, but formats like :xml or :json, should return 401.
  252. #
  253. # If you have any extra navigational formats, like :iphone or :mobile, you
  254. # should add them to the navigational formats lists.
  255. #
  256. # The "*/*" below is required to match Internet Explorer requests.
  257. # config.navigational_formats = ['*/*', :html]
  258. # The default HTTP method used to sign out a resource. Default is :delete.
  259. config.sign_out_via = :delete
  260. # ==> OmniAuth
  261. # Add a new OmniAuth provider. Check the wiki for more information on setting
  262. # up on your models and hooks.
  263. # config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo'
  264. # ==> Warden configuration
  265. # If you want to use other strategies, that are not supported by Devise, or
  266. # change the failure app, you can configure them inside the config.warden block.
  267. #
  268. # config.warden do |manager|
  269. # manager.intercept_401 = false
  270. # manager.default_strategies(scope: :user).unshift :some_external_strategy
  271. # end
  272. # ==> Mountable engine configurations
  273. # When using Devise inside an engine, let's call it `MyEngine`, and this engine
  274. # is mountable, there are some extra configurations to be taken into account.
  275. # The following options are available, assuming the engine is mounted as:
  276. #
  277. # mount MyEngine, at: '/my_engine'
  278. #
  279. # The router that invoked `devise_for`, in the example above, would be:
  280. # config.router_name = :my_engine
  281. #
  282. # When using OmniAuth, Devise cannot automatically set OmniAuth path,
  283. # so you need to do it manually. For the users scope, it would be:
  284. # config.omniauth_path_prefix = '/my_engine/users/auth'
  285. if ENV['PAM_ENABLED'] == 'true'
  286. config.pam_authentication = true
  287. config.usernamefield = nil
  288. config.emailfield = 'email'
  289. config.check_at_sign = true
  290. config.pam_default_suffix = ENV.fetch('PAM_EMAIL_DOMAIN') { ENV['LOCAL_DOMAIN'] }
  291. config.pam_default_service = ENV.fetch('PAM_DEFAULT_SERVICE') { 'rpam' }
  292. config.pam_controlled_service = ENV.fetch('PAM_CONTROLLED_SERVICE') { nil }
  293. end
  294. if ENV['LDAP_ENABLED'] == 'true'
  295. config.ldap_authentication = true
  296. config.check_at_sign = true
  297. config.ldap_host = ENV.fetch('LDAP_HOST', 'localhost')
  298. config.ldap_port = ENV.fetch('LDAP_PORT', 389).to_i
  299. config.ldap_method = ENV.fetch('LDAP_METHOD', :simple_tls).to_sym
  300. config.ldap_base = ENV.fetch('LDAP_BASE')
  301. config.ldap_bind_dn = ENV.fetch('LDAP_BIND_DN')
  302. config.ldap_password = ENV.fetch('LDAP_PASSWORD')
  303. config.ldap_uid = ENV.fetch('LDAP_UID', 'cn')
  304. config.ldap_tls_no_verify = ENV['LDAP_TLS_NO_VERIFY'] == 'true'
  305. end
  306. end