2022-11-30 10:12:04 +01:00
|
|
|
class APITokensController < ApplicationController
|
|
|
|
before_action :authenticate_administrateur!
|
2024-01-17 11:02:26 +01:00
|
|
|
before_action :set_api_token, only: [:destroy]
|
2022-11-30 10:12:04 +01:00
|
|
|
|
2024-01-17 11:05:56 +01:00
|
|
|
def nom
|
|
|
|
@name = params[:name]
|
|
|
|
end
|
|
|
|
|
2024-01-17 11:07:48 +01:00
|
|
|
def autorisations
|
|
|
|
@name = params[:name]
|
|
|
|
@libelle_id_procedures = current_administrateur
|
|
|
|
.procedures
|
|
|
|
.order(:libelle)
|
|
|
|
.pluck(:libelle, :id)
|
|
|
|
.map { |libelle, id| ["#{id} - #{libelle}", id] }
|
|
|
|
end
|
|
|
|
|
2022-11-30 10:12:04 +01:00
|
|
|
def create
|
|
|
|
@api_token, @packed_token = APIToken.generate(current_administrateur)
|
|
|
|
|
2023-09-13 12:05:40 +02:00
|
|
|
render :index
|
2022-11-30 10:12:04 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@api_token.destroy
|
|
|
|
|
2024-01-17 10:44:09 +01:00
|
|
|
redirect_to profil_path
|
2022-11-30 10:12:04 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2023-09-12 17:20:00 +02:00
|
|
|
def set_api_token
|
|
|
|
@api_token = current_administrateur.api_tokens.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2023-09-13 10:29:49 +02:00
|
|
|
def become_full_access?
|
|
|
|
api_token_params[:become_full_access].present?
|
|
|
|
end
|
|
|
|
|
2023-09-13 10:30:47 +02:00
|
|
|
def disallow_procedure_id
|
|
|
|
api_token_params[:disallow_procedure_id]
|
|
|
|
end
|
|
|
|
|
2022-11-30 10:12:04 +01:00
|
|
|
def api_token_params
|
2023-09-13 10:29:49 +02:00
|
|
|
params.require(:api_token).permit(:name, :write_access, :become_full_access, :disallow_procedure_id, allowed_procedure_ids: [])
|
2022-11-30 10:12:04 +01:00
|
|
|
end
|
|
|
|
end
|