From 457a0bfdc74ed90b77d09d285281abca8a1396de Mon Sep 17 00:00:00 2001 From: pdp8 Date: Wed, 21 Jun 2023 18:56:21 +0200 Subject: reply form, server helpers moved to server.rb --- client.rb | 45 +++++++++++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 14 deletions(-) (limited to 'client.rb') diff --git a/client.rb b/client.rb index 512c1d3..759fdec 100644 --- a/client.rb +++ b/client.rb @@ -2,11 +2,19 @@ post "/outbox" do protected! request.body.rewind # in case someone already read it - body = request.body.read + #body = request.body.read date = Time.now.strftime("%Y-%m-%dT%H:%M:%S") # TODO hashtags, replys outbox_path = File.join("public/outbox", date + ".json") object_path = File.join("public/objects", date + ".json") + + #recipients = ["https://www.w3.org/ns/activitystreams#Public", params[:to]] + recipients = [params[:to]] + #recipients += Dir[File.join("public/followers", "*.json")].collect { |f| JSON.parse(File.read(f))["actor"] } + recipients.delete ACTOR + recipients.uniq! + + p params create = { "@context" => "https://www.w3.org/ns/activitystreams", "id" => File.join(SOCIAL_URL, outbox_path), @@ -16,31 +24,34 @@ post "/outbox" do "id" => File.join(SOCIAL_URL, object_path), "type" => "Note", "attributedTo" => ACTOR, + "inReplyTo" => params[:inReplyTo], "published" => date, - "content" => "", - "to" => ["https://www.w3.org/ns/activitystreams#Public"] + "content" => params[:content], + "to" => recipients }, "published" => date, - "to" => ["https://www.w3.org/ns/activitystreams#Public"] + "to" => recipients } - recipients = [] +=begin if /^@/.match body mentions, body = body.split("\n", 2) mentions.split(/, */).each do |m| recipients << actor(m.chomp) end end - create["object"]["content"] = body.lines.select { |l| !l.empty? }.join("
") - recipients += Dir[File.join("public/followers", "*.json")].collect { |f| JSON.parse(File.read(f))["actor"] } - recipients.delete ACTOR - recipients.uniq! - create["object"]["to"] += recipients - create["to"] += recipients +=end + #create["object"]["content"] = body#.lines.select { |l| !l.empty? }.join("
") + #create["object"]["to"] += recipients + #create["to"] += recipients + #p params["to"] + p create File.open(outbox_path, "w+") { |f| f.puts create.to_json } File.open(object_path, "w+") { |f| f.puts create["object"].to_json } - recipients.each { |r| send_signed create, r } + #p recipients + create["to"].each { |r| send_signed create, r } + redirect to(params['redirect']) end post "/archive" do @@ -65,8 +76,6 @@ post "/follow/*" do protected! mention = params['splat'][0] actor = actor(mention) - p mention - p actor follow = { "@context" => "https://www.w3.org/ns/activitystreams", "id" => File.join(SOCIAL_URL, "following", mention + ".json"), "type" => "Follow", @@ -115,3 +124,11 @@ end erb :index end end + +helpers do + + def protected! + redirect("/login.html") unless session['client'] + end + +end -- cgit v1.2.3