diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index e65e00d7cebaf9556cbd3f1d5f26be1b267694b7..42dd80cd40016ce2fe885542af0a225209e47645 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -2,10 +2,5 @@ class ApplicationController < ActionController::Base protect_from_forgery :except => :receive layout 'application' - def receive - puts params.inspect - puts "holy boner batman" - render :nothing => true - end end diff --git a/app/controllers/dashboard_controller.rb b/app/controllers/dashboard_controller.rb index 62911ac1c0fa0bb8b56f1500068a4e795e5b9de1..91eff3cacab0f416bbabf3a4c704d893c578acd4 100644 --- a/app/controllers/dashboard_controller.rb +++ b/app/controllers/dashboard_controller.rb @@ -1,7 +1,19 @@ class DashboardController < ApplicationController - before_filter :authenticate_user! + + before_filter :authenticate_user!, :except => :receive + include ApplicationHelper def index @posts = Post.stream end + + + def receive + store_posts_from_xml (params[:xml]) + + + + puts "holy boner batman" + render :nothing => true + end end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index f58313c9b37022f6b3baf11214c001eeeaddf1da..4580f9cd3035976b190e76a1858b313d30a3770a 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -6,4 +6,15 @@ module ApplicationHelper def object_fields(object) object.attributes.keys end + + def store_posts_from_xml(xml) + doc = Nokogiri::XML(xml) { |cfg| cfg.noblanks } + doc.xpath("//post").each do |post| #this is the post wrapper + post.children.each do|type| #now the text of post itself is the type + #type object to xml is the the thing we want to from_xml + object = type.name.camelize.constantize.from_xml type.to_s + object.save + end + end + end end diff --git a/app/helpers/dashboard_helper.rb b/app/helpers/dashboard_helper.rb index a94ddfc2e33b85433921195ba9c46defd03bc09a..d06bca135cf5e95c5fd0c4842019714a081190cd 100644 --- a/app/helpers/dashboard_helper.rb +++ b/app/helpers/dashboard_helper.rb @@ -1,2 +1,7 @@ module DashboardHelper + + + + + end diff --git a/app/models/status_message.rb b/app/models/status_message.rb index b9eb2c4fc40ae420dfd70352ddd5911151a69c59..0b58ee72b5659407b26cf5ceb5ca9929409659a1 100644 --- a/app/models/status_message.rb +++ b/app/models/status_message.rb @@ -2,6 +2,8 @@ class StatusMessage < Post include StatusMessagesHelper require 'lib/net/curl' + xml_name :status_message + xml_accessor :message field :message diff --git a/config/routes.rb b/config/routes.rb index f1466709a53d3ed5c9b4c9b12c7987f6c2980293..efdc9426f600ac06302b11d8b94e2ac7a3b1c83e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -14,7 +14,7 @@ Diaspora::Application.routes.draw do |map| match 'logout', :to => 'devise/sessions#destroy', :as => "destroy_user_session" match 'signup', :to => 'devise/registrations#new', :as => "new_user_registration" - match 'receive', :to => 'application#receive' + match 'receive', :to => 'dashboard#receive' resources :users resources :status_messages diff --git a/lib/common.rb b/lib/common.rb index 218d34ca5ca085d9d6add459dace9e0ac9956065..7b9538e8808091f8d908c8d3a5bc5b16888fd652 100644 --- a/lib/common.rb +++ b/lib/common.rb @@ -16,10 +16,20 @@ module Diaspora def prep_webhook self.to_xml.to_s end - + + def prep_many + "<post>#{self.to_xml.to_s}</post>" + end + def friends_with_permissions Friend.only(:url).map{|x| x = x.url + "/receive/"} end + + def self.build_xml_for(posts) + xml = "<posts>" + posts.each {|x| xml << x.prep_many} + xml = xml + "</posts>" + end end end end diff --git a/spec/helpers/parser_spec.rb b/spec/helpers/parser_spec.rb new file mode 100644 index 0000000000000000000000000000000000000000..04c1846b4d72058c53b0c8935a4f403874592ec3 --- /dev/null +++ b/spec/helpers/parser_spec.rb @@ -0,0 +1,21 @@ +require File.dirname(__FILE__) + '/../spec_helper' + +include ApplicationHelper + +describe DashboardHelper do + before do + Factory.create(:user) + end + + it "should store objects sent from xml" do + status_messages = [] + 10.times { status_messages << Factory.build(:status_message)} + + xml = Post.build_xml_for(status_messages) + + store_posts_from_xml(xml) + StatusMessage.count.should == 10 + end + + +end