1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
TO_REGEXP = /^to:\s+/i
REPLY_REGEXP = /^inreplyto:\s+/i
ATTACH_REGEXP = /^attach:\s+/i
URL_REGEXP = %r{\Ahttps?://\S+\Z}
MENTION_REGEXP = /\A@\w+@\S+\Z/
HASHTAG_REGEXP = /\A#\w+\Z/
post '/create' do
protected!
request.body.rewind # in case someone already read it
to = []
inReplyTo = ''
content = []
tag = []
attachment = []
request.body.read.each_line do |line|
line.chomp!
case line
when TO_REGEXP
line.sub(TO_REGEXP, '').split(/\s+/).each do |word|
case word
when 'public'
to += ['https://www.w3.org/ns/activitystreams#Public', FOLLOWERS_URL]
when MENTION_REGEXP
to << actor(word)
when URL_REGEXP
to << word
end
end
when REPLY_REGEXP
inReplyTo = line.sub(REPLY_REGEXP, '')
when ATTACH_REGEXP
url = line.sub(ATTACH_REGEXP, '')
attachment << {
'type' => 'Document',
'mediaType' => media_type(url),
'url' => url
}
else # create links
# single quotes in html invalidate digest, reason unknown
line.split(/\s+/).each do |word|
case word
when HASHTAG_REGEXP
tag_url = File.join('https://social.pdp8.info', 'tags', word.sub('#', ''))
tag << {
'type' => 'Hashtag',
'href' => tag_url,
'name' => word
}
when MENTION_REGEXP
actor = actor(word)
tag << {
'type' => 'Mention',
'href' => actor,
'name' => word
}
end
end
content << line
end
end
object = {
'to' => to,
'type' => 'Note',
'attributedTo' => ACTOR,
'content' => "#{content.join(' ')}"
}
object['inReplyTo'] = inReplyTo unless inReplyTo.empty?
object['attachment'] = attachment unless attachment.empty?
object['tag'] = tag unless tag.empty?
jj object
# create_activity 'Create', object, to
200
end
|