You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.9 KiB

13 years ago
class RecordsController < ApplicationController
13 years ago
# override so SOA's cannot be created by themselves
def self._add_sti_create_links
new_action_link = active_scaffold_config.action_links.collection['new']
unless new_action_link.nil? || active_scaffold_config.sti_children.empty?
active_scaffold_config.action_links.collection.delete('new')
sti_children = active_scaffold_config.sti_children - [:SOA]
sti_children.each do |child|
new_sti_link = Marshal.load(Marshal.dump(new_action_link)) # deep clone
new_sti_link.label = child.to_s.camelize.constantize.model_name.human
new_sti_link.parameters = {:parent_sti => controller_path}
new_sti_link.controller = Proc.new { active_scaffold_controller_for(child.to_s.camelize.constantize).controller_path }
active_scaffold_config.action_links.collection.create.add(new_sti_link)
end
active_scaffold_config.action_links.collection.create.name = "Add Record"
13 years ago
end
end
13 years ago
respond_to :html, :xml, :json
13 years ago
active_scaffold :record do |conf|
13 years ago
conf.sti_children = [:SOA, :NS, :MX, :A, :CNAME, :TXT]
13 years ago
conf.columns = [:name, :type, :content, :ttl, :prio, :change_date, :authentication_token]
13 years ago
conf.columns[:change_date].list_ui = :timestamp
conf.columns[:ttl].options = {:i18n_number => {:delimiter => ''}}
# conf.create.link.label = "Add Record"
13 years ago
conf.actions.exclude :show
13 years ago
end
13 years ago
before_filter :ensure_nested_under_domain, :except => 'modify'
skip_before_filter :authenticate_user!, :only => 'modify'
protect_from_forgery :except => 'modify'
skip_authorize_resource :only => :modify
# TODO: externalize
def modify
@record = Record.where(:authentication_token => params[:authentication_token]).first!
@record.content = params[:ip] || client_remote_ip
@record.save!
13 years ago
respond_with(@record) do |format|
format.html {
render :text => 'OK'
}
end
end
13 years ago
end