diff --git a/app/controllers/api/osuny/communication/websites_controller.rb b/app/controllers/api/osuny/communication/websites_controller.rb index a23cb12bbee6fa5bac3a6c91a22561bd767fe4db..a6d4a480946862ded51a537e7d21147f1056a1ad 100644 --- a/app/controllers/api/osuny/communication/websites_controller.rb +++ b/app/controllers/api/osuny/communication/websites_controller.rb @@ -4,10 +4,4 @@ class Api::Osuny::Communication::WebsitesController < Api::ApplicationController @websites = current_university.communication_websites.in_production end - def theme_released - render_forbidden unless params[:secret_key].present? && params[:secret_key] == ENV['OSUNY_API_AUTOUPDATE_THEME_KEY'] - Communication::Website.with_automatic_update.find_each do |website| - website.update_theme_version - end - end end diff --git a/app/controllers/api/osuny/communication_controller.rb b/app/controllers/api/osuny/communication_controller.rb index 9be1e00a73404e3c18fa5eec5583e8e619b92800..597ec060fd44c983375bd75e6d909159830f2557 100644 --- a/app/controllers/api/osuny/communication_controller.rb +++ b/app/controllers/api/osuny/communication_controller.rb @@ -1,5 +1,4 @@ class Api::Osuny::CommunicationController < Api::ApplicationController def index - @websites = current_university.communication_websites.in_production end end diff --git a/app/controllers/api/osuny/server/websites_controller.rb b/app/controllers/api/osuny/server/websites_controller.rb new file mode 100644 index 0000000000000000000000000000000000000000..bc5c1f1f8e6c7ee6aa3d406ad84a674e95bd8ffd --- /dev/null +++ b/app/controllers/api/osuny/server/websites_controller.rb @@ -0,0 +1,13 @@ +class Api::Osuny::Server::WebsitesController < Api::ApplicationController + + def index + @websites = Communication::Website.in_production + end + + def theme_released + render_forbidden unless params[:secret_key].present? && params[:secret_key] == ENV['OSUNY_API_AUTOUPDATE_THEME_KEY'] + Communication::Website.with_automatic_update.find_each do |website| + website.update_theme_version + end + end +end diff --git a/app/controllers/api/osuny/server_controller.rb b/app/controllers/api/osuny/server_controller.rb new file mode 100644 index 0000000000000000000000000000000000000000..914600ac977bb52a852911f8e5270a525f396c6a --- /dev/null +++ b/app/controllers/api/osuny/server_controller.rb @@ -0,0 +1,5 @@ +class Api::Osuny::ServerController < Api::ApplicationController + def index + @websites = current_university.communication_websites.in_production + end +end diff --git a/app/controllers/api/osuny_controller.rb b/app/controllers/api/osuny_controller.rb index 0412db3f9a39c9d3503fed401aefe8335d54d35a..242733459c5d02383c94f113479bf85b55f0d1b8 100644 --- a/app/controllers/api/osuny_controller.rb +++ b/app/controllers/api/osuny_controller.rb @@ -1,5 +1,4 @@ class Api::OsunyController < Api::ApplicationController def index - @websites = current_university.communication_websites.in_production end end diff --git a/app/views/api/dashboard/index.html.erb b/app/views/api/dashboard/index.html.erb index 7d58b0d4044b920a8bcf61fa5600d77c4dd3e1ca..52a32b899107be824825a08914bd9b3d2a29e0f0 100644 --- a/app/views/api/dashboard/index.html.erb +++ b/app/views/api/dashboard/index.html.erb @@ -7,7 +7,7 @@ L'API Osuny permet d'interagir avec une instance. L'implémentation est très rudimentaire, n'hésitez pas à ouvrir <a href="https://github.com/noesya/osuny/issues" target="_blank" rel="noreferrer">une issue sur Github</a> pour signaler un manque. </p> - <%= link_to 'API', api_osuny_root_path, class: 'btn btn-primary' %> + <%= link_to 'API', api_osuny_path, class: 'btn btn-primary' %> </div> <div class="col-lg-6 mb-5"> <h2>LHÉO</h2> diff --git a/app/views/api/osuny/index.json.jbuilder b/app/views/api/osuny/index.json.jbuilder index 51849c5d0e188ca65a26c97efb1c80bcb5951eb3..933e295d1805cbefe9142a91c303154494459d9d 100644 --- a/app/views/api/osuny/index.json.jbuilder +++ b/app/views/api/osuny/index.json.jbuilder @@ -1,3 +1,6 @@ json.communication do json.url api_osuny_communication_path end +json.server do + json.url api_osuny_server_path +end diff --git a/app/views/api/osuny/server/index.json.jbuilder b/app/views/api/osuny/server/index.json.jbuilder new file mode 100644 index 0000000000000000000000000000000000000000..e14674d74d3eb6caa9b7e5916dc7736b8437f779 --- /dev/null +++ b/app/views/api/osuny/server/index.json.jbuilder @@ -0,0 +1,3 @@ +json.websites do + json.url api_osuny_server_websites_path +end diff --git a/app/views/api/osuny/server/websites/index.json.jbuilder b/app/views/api/osuny/server/websites/index.json.jbuilder new file mode 100644 index 0000000000000000000000000000000000000000..1cec4fd718c3698393101e64daa51321f0c82bb8 --- /dev/null +++ b/app/views/api/osuny/server/websites/index.json.jbuilder @@ -0,0 +1,4 @@ +json.array! @websites.each do |website| + json.name website.name + json.url website.url +end diff --git a/app/views/api/osuny/communication/websites/theme_released.json.jbuilder b/app/views/api/osuny/server/websites/theme_released.json.jbuilder similarity index 100% rename from app/views/api/osuny/communication/websites/theme_released.json.jbuilder rename to app/views/api/osuny/server/websites/theme_released.json.jbuilder diff --git a/config/routes/api.rb b/config/routes/api.rb index 0429915c60d1a232cf5e59d2e11e8ea921ccd6f1..45b8a12697656e0efcd632765092a1b46ebc8b97 100644 --- a/config/routes/api.rb +++ b/config/routes/api.rb @@ -5,6 +5,10 @@ namespace :api do get 'communication' => 'communication#index' namespace :communication do get 'websites' => 'websites#index' + end + get 'server' => 'server#index' + namespace :server do + get 'websites' => 'websites#index' post 'websites/theme-released' => 'websites#theme_released' end end