/usr/share/tdiary/misc/plugin/ping.rb is in tdiary-plugin 3.1.3-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | # ping.rb
#
# ping to weblog ping servers.
#
# Copyright (c) 2004 TADA Tadashi <sho@spc.gr.jp>
# Distributed under the GPL
#
# Modified: by MoonWolf <moonwolf@moonwolf.com>
#
add_update_proc do
if @conf['ping.list'] then
list = @conf['ping.list'].split
ping( list ) unless list.empty?
end
end
def ping( list )
return unless @cgi.params['plugin_ping_send'][0] == 'true'
xml = to_utf8( <<-XML )
<?xml version="1.0" encoding="UTF-8"?>
<methodCall>
<methodName>weblogUpdates.ping</methodName>
<params>
<param>
<value>#{@conf.html_title}</value>
</param>
<param>
<value>#{@conf.base_url}</value>
</param>
</params>
</methodCall>
XML
require 'net/http'
require 'timeout'
threads = []
list.each do |url|
u = URI::parse( url.untaint )
next unless u.host
threads << Thread.start( u, xml ) do |u, xml|
begin
timeout( @conf['ping.timeout'].to_i ) do
Net::HTTP.start( u.host, u.port ) do |http|
http.post( u.path, xml, 'Content-Type' => 'text/xml' )
end
end
rescue Exception,Timeout::Error
end
end
end
threads.each {|t| t.join }
end
add_conf_proc( 'ping', @ping_label_conf, 'update' ) do
ping_conf_proc
end
def ping_conf_proc
if @mode == 'saveconf' then
@conf['ping.list'] = @cgi.params['ping.list'][0]
@conf['ping.timeout'] = @cgi.params['ping.timeout'][0]
end
@conf['ping.list'] = '' unless @conf['ping.list']
@conf['ping.timeout'] = '3' unless @conf['ping.timeout']
result = <<-HTML
<h3>#{@ping_label_list}</h3>
<p>#{@ping_label_list_desc}</p>
<p><textarea name="ping.list" cols="70" rows="5">#{h( @conf['ping.list'] )}</textarea></p>
<h3>#{@ping_label_timeout}</h3>
<p><input type="text" name="ping.timeout" value="#{h( @conf['ping.timeout'] )}" /></p>
HTML
end
add_edit_proc do
ping_edit_proc
end
def ping_edit_proc
checked = ' checked'
if @mode == 'preview' then
checked = @cgi.params['plugin_ping_send'][0] == 'true' ? ' checked' : ''
end
r = <<-HTML
<div class="ping"><label for="plugin_ping_send">
<input type="checkbox" id="plugin_ping_send" name="plugin_ping_send" value="true"#{checked} tabindex="400">
#{@ping_label_send}
</label></div>
HTML
end
# Local Variables:
# mode: ruby
# indent-tabs-mode: t
# tab-width: 3
# ruby-indent-level: 3
# End:
# vim: ts=3
|