/cloud/sip-servlets/steamcannon/app/controllers/storage_volumes_controller.rb

http://mobicents.googlecode.com/ · Ruby · 69 lines · 43 code · 5 blank · 21 comment · 5 complexity · 38ac106174c00412903ab5cd7470f476 MD5 · raw file

  1. #
  2. # Copyright 2010 Red Hat, Inc.
  3. #
  4. # This is free software; you can redistribute it and/or modify it
  5. # under the terms of the GNU Lesser General Public License as
  6. # published by the Free Software Foundation; either version 3 of
  7. # the License, or (at your option) any later version.
  8. #
  9. # This software is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. # Lesser General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Lesser General Public
  15. # License along with this software; if not, write to the Free
  16. # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  17. # 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  18. class StorageVolumesController < ApplicationController
  19. before_filter :require_user
  20. before_filter :require_environment
  21. # DELETE /storage_volumes/1
  22. # DELETE /storage_volumes/1.xml
  23. def destroy
  24. get_storage_volume
  25. if @storage_volume && @storage_volume.can_be_deleted?
  26. @storage_volume.destroy
  27. respond_to do |format|
  28. format.js { render(generate_json_response(:ok,
  29. :storage_volume=>@storage_volume.to_json,
  30. :message=>"Deleting #{@storage_volume.volume_identifier}",
  31. :js => "$('#volume_#{@storage_volume.id}_delete_link').remove()")) }
  32. end
  33. else
  34. message = (@storage_volume && !@storage_volume.can_delete?) ? "Cannot delete volume while it is #{@storage_volume.current_state}." : "Cannot find volume."
  35. respond_to do |format|
  36. format.js { render(generate_json_response(:error, :message=>message)) }
  37. end
  38. end
  39. end
  40. # POST /environments/:environment_id/storage_volumes/1/status.json
  41. def status
  42. get_storage_volume
  43. if @storage_volume
  44. respond_to do |format|
  45. format.js { render(generate_json_response(:ok,
  46. :html => render_to_string(:partial => 'storage_volumes/row',
  47. :locals => {:volume => @storage_volume}))) }
  48. end
  49. else
  50. respond_to do |format|
  51. format.js { render(generate_json_response(:error, :message=>"Cannot find requested volume")) }
  52. end
  53. end
  54. end
  55. protected
  56. def require_environment
  57. @environment = current_user.environments.find(params[:environment_id])
  58. end
  59. def get_storage_volume
  60. @storage_volume = @environment.storage_volumes.find(params[:id])
  61. rescue ActiveRecord::RecordNotFound => ex
  62. #ignore
  63. end
  64. end