Skip to content
Extraits de code Groupes Projets
dev_utilities_controller.rb 3,57 ko
Newer Older
class DevUtilitiesController < ApplicationController
  before_filter :authenticate_user!, :except => [:set_backer_number]
  include RequestsHelper
def warzombie
    render :nothing => true
    if current_user.email == "tom@tom.joindiaspora.com" && StatusMessage.where(:message => "There's a bomb in the lasagna!?").first == nil
Raphael's avatar
Raphael a validé
      current_user.post(:status_message, :message => "There's a bomb in the lasagna!?") 
Raphael's avatar
Raphael a validé
      current_user.post(:status_message, :message => "xkcd \nhttp://xkcd.com/743/" )
Raphael's avatar
Raphael a validé
      current_user.post(:status_message, :message => "I switched to Motoroi today, a Motorola Android-based phone, in Korea. Now, I am using Android phones in both the U.S. and Korea", :created_at => Time.now-930)
      current_user.post(:status_message, :message => "I had 5 hours to study for it :-( GREs on Thursday. Wunderbar.", :created_at => Time.now-43990)
      current_user.post(:status_message, :message => "Spotted in toy story 3: google maps, OSX, and windows XP. Two out of three isn't bad.", :created_at => Time.now-4390)
Raphael's avatar
Raphael a validé
      current_user.post(:status_message,  :message => "Reddit\nhttp://reddit.com", :created_at => Time.now-54390)
Raphael's avatar
Raphael a validé
      current_user.post(:status_message, :message => "Commercials for IE make me SO MAD and my friends just don't get why.", :created_at => Time.now-30900)
Raphael's avatar
Raphael a validé
      current_user.post(:status_message, :message => "Zombo.com\nhttp://zombo.com", :created_at => Time.now-9090) 
Raphael's avatar
Raphael a validé
      current_user.post(:status_message, :message => "Why do I have \"No More Heroes\" by Westlife on repeat all day?", :created_at => Time.now-590000)
      current_user.post(:status_message, :message => "Mmm. Friday night. Acknowledged.", :created_at => Time.now-503900)
      current_user.post(:status_message, :message => "Getting a universal remote is the epitome of laziness, I do declare.", :created_at => Time.now-4400)
      current_user.post(:status_message, :message => "Does anyone know how to merge two Skype contact entries of the same person? (i.e. one Skype ID and one mobile number)", :created_at => Time.now-400239)
      current_user.post(:status_message, :message => "A cool, cool morning for once.", :created_at => Time.now-150000)
    end
  end

  def zombiefriends
    render :nothing => true
    bkr_info  = backer_info
    if current_user.email == "tom@tom.joindiaspora.com" 
      bkr_info.each do |backer|
ilya's avatar
ilya a validé
        backer_email = "#{backer['username']}@#{backer['username']}.joindiaspora.com"
        rel_hash = relationship_flow(backer_email)
        logger.info "Zombefriending #{backer['given_name']} #{backer['family_name']}"
ilya's avatar
ilya a validé
        current_user.send_request(rel_hash, current_user.groups.first.id)
      end
    end
  end

  def zombiefriendaccept
    render :nothing => true
    set_profile_photo

      current_user.accept_and_respond(r.id, current_user.groups.first.id)

  def backer_info
    config = YAML.load_file(File.dirname(__FILE__) + '/../../config/deploy_config.yml') 
    config['servers']['backer']
  end
  def set_backer_number
    render :nothing => true
    seed_num_hash = {:seed_number => params[:number]}
    file = File.new(Rails.root.join('config','backer_number.yml'),'w')
    file.write(seed_num_hash.to_yaml)

  def set_profile_photo
    album = current_user.post(:album, :name => "Profile Photos")
    
    username = backer_info[backer_number]['username'].gsub(/ /,'').downcase
    photo = current_user.post(:photo, :album_id => album.id,
                      :user_file => "public/images/users/#{username}.jpg") 
   
    current_user.update_profile(:image_url => photo.url)
  end