Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# website integration
require 'lib/web/api'
def Hacker name
Hacker.new name
end
class Hacker
include HH::API
attr :name
attr :password
attr :email
def initialize(who)
@name = who[:username]
@password = who[:password]
@email = who[:email]
end
def inspect
"(Hacker #{@name})"
end
def channel(title)
Channel.new(@name, title)
end
def program_list &blk
programs_rel = HH::API.root.at("//a[@rel='/rels/program-index']")
HH::API.get(program_rel.attributes['href'], &blk)
end
def auth_check &blk
# Hacking around CSRF, This will go away when we switch to http digest auth
sign_in = HH::API.get('/users/sign_in') { |f| Hpricot(f.body)}
csrf = sign_in.at("//input[@name='authenticity_token']").attributes['value']
HH::API.post("/users/sign_in", {"authenticity_token" => csrf, "user[username]" => @name, "user[password]" => @password, "user[remember_me]" => 1}) do |response|
blk[response]
end
end
def sign_up! &blk
# Hacking around CSRF, This will go away when we switch to http digest auth
sign_in = HH::API.get('/users/sign_up') { |f| Hpricot(f.body)}
csrf = sign_in.at("//input[@name='authenticity_token']").attributes['value']
HH::API.post("/users", {"authenticity_token" => csrf, "user[username]" => @name, "user[email]" => @email, "user[password]" => @password, "user[password_conformation]" => @password}) do |response|
blk[response]
end
end
def save_program_to_the_cloud name, code, &blk
# Hacking around CSRF, This will go away when we switch to http digest auth
program_rel = HH::API.root.at("//a[@rel='/rels/program-new']")
new_program = HH::API.get(program_rel.attributes['href']){ |f| Hpricot(f.body) }
csrf = new_program.at("//meta[@name='csrf-token']")
form = new_program.at("//form")
HH::API.post(form.attributes['action'], {"authenticity_token" => csrf, "program[author_username]" => @name, "program[title]" => name, "program[source_code]" => code}) do |response|
blk[response]
end
end
end
# I feel like these belong in Hacker. Trying to not do too much at once
module HH
class << self
def scripts
Dir["#{HH::USER}/*.rb"].map { |path| get_script(path) }.
sort_by { |script| Time.now - script[:mtime] }
end
def get_script(path)
app = {:name => File.basename(path, '.rb'), :script => File.read(path)}
m, = *app[:script].match(/\A(([ \t]*#.+)(\r?\n|$))+/)
app[:mtime] = File.mtime(path)
app[:desc] = m.gsub(/^[ \t]*#+[ \t]*/, '').strip.gsub(/\n+/, ' ') if m
app
end
def samples
Dir["#{HH::HOME}/samples/*.rb"].map do |path|
s = get_script(path)
# set the creation time to nil
s[:mtime] = nil
s[:sample] = true
s
end.sort_by { |script| script[:name] }
end
def save_prefs
HH::PREFS.save
end
def script_exists?(name)
File.exists?(HH::USER + "/" + name + ".rb")
end
def save_script(name, code)
APP.emit :save, :name => name, :code => code
File.open(HH::USER + "/" + name + ".rb", "w") do |f|
f << code
end
return if PREFS['username'].blank?
end
def get_script(path)
app = {:name => File.basename(path, '.rb'), :script => File.read(path)}
m, = *app[:script].match(/\A(([ \t]*#.+)(\r?\n|$))+/)
app[:mtime] = File.mtime(path)
app[:desc] = m.gsub(/^[ \t]*#+[ \t]*/, '').strip.gsub(/\n+/, ' ') if m
app
end
end
end