[#10798] Indicate in manager if api_entreprise_token is present / valid / expired
This commit is contained in:
parent
7286fb9ef2
commit
ce22adf811
3 changed files with 25 additions and 0 deletions
22
app/fields/jwt_field.rb
Normal file
22
app/fields/jwt_field.rb
Normal file
|
@ -0,0 +1,22 @@
|
|||
require "administrate/field/base"
|
||||
|
||||
class JwtField < Administrate::Field::Base
|
||||
def to_s
|
||||
if data.present?
|
||||
begin
|
||||
decoded_token = JWT.decode(data, nil, false)
|
||||
expiration = Time.zone.at(decoded_token[0]['exp'])
|
||||
|
||||
if expiration < Time.zone.now
|
||||
"Token présent, expiré le #{expiration.strftime('%d/%m/%Y à %H:%M')}"
|
||||
else
|
||||
"Token présent, expirera le #{expiration.strftime('%d/%m/%Y à %H:%M')}"
|
||||
end
|
||||
rescue JWT::DecodeError => e
|
||||
"Token invalide : #{e.message}"
|
||||
end
|
||||
else
|
||||
"Pas de token"
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue