public
Description: Multiple more or less usefull scripts which got no own repository
Homepage: http://blog.knut.me
Clone URL: git://github.com/Luzifer/kscripts.git
kscripts / iusethis_profiler.rb
100644 246 lines (189 sloc) 7.353 kb
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#!/usr/bin/ruby
 
####
# iUseThis_profiler v.0.8 (c) 2008-09 by Knut Ahlers
# WWW: http://blog.knut.me - Mail: knut@ahlers.me
#
# Thanks to Andrew Turner for his improvements to ask the user which
# applications to send to iUseThis.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
####
 
#########################################################################################
### PLEASE DO NOT MAKE ANY CHANGES BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING ###
#########################################################################################
 
require 'find'
require 'net/http'
require 'rexml/document'
 
#########################################################################################
 
# Creates the shortname needed by the iusethis api
def make_short(program_name)
  program_name.gsub(/[^\w\@\-]/, '').downcase!
end
 
#########################################################################################
 
# Retrieves all files in path matching *extension
def search_apps(path, extension)
  apps = []
 
  Find.find(path) do |f|
    if !/.*#{extension}$/.match(f).nil?
      apps << make_short(f[f.rindex('/')+1..f.length].gsub(extension, ''))
    end
    Find.prune if FileTest.directory? f and f.include?(".")
  end
  
  apps
end
 
#########################################################################################
 
# Posts the data to iusethis and passes the results back (If there is a redirection it
# is followed until redirect level 10 or reaching the target)
def get_post_response(url, user, pass, level = 0)
  # If there were too many redirections break
  return nil if level == 10
  
  uri = URI.parse(url)
  
  result = Net::HTTP.start(uri.host, uri.port) do |http|
    post = Net::HTTP::Post.new(uri.path)
    post.basic_auth user, pass
    post.set_form_data({})
    http.request(post)
  end
  
  case result
  when Net::HTTPRedirection
    return get_post_response(result['location'], user, pass, level + 1)
  else
    return result
  end
  
end
 
#########################################################################################
 
 
def resolve_message(result)
  case result.code.to_i
  when 404
    return 'Application not found'
  when 409
    return 'Application is already in your profile'
  else
    return "Can't add this application"
  end
end
 
#########################################################################################
 
# Retrieves the lastest version available at GitHub
def get_github_version
  begin
    giturl = 'http://github.com/Luzifer/kscripts/raw/master/iusethis_profiler.rb'
    response = Net::HTTP.get_response(URI.parse(giturl))
    rex = /.*# iUseThis_profiler v.([0-9.]*) .*/.match(response.body)
    return rex[1].to_f
  rescue
    return 0.0
  end
end
 
#########################################################################################
 
myversion = 0.8
 
puts "Welcome to iUseThis_profiler v.#{myversion.to_s}"
puts "- Checking for new updates..."
 
lastversion = get_github_version
 
if myversion < lastversion
  puts " + There is a new update (v.#{lastversion.to_s}) available."
  puts " Check it out at http://github.com/Luzifer/kscripts/tree/master"
else
  puts " + You are using the most recent version." if lastversion > 0.0
end
 
#########################################################################################
 
print "- What is your username for iUseThis_Profiler: "
user = gets.chomp
print "- And the password (It will not be displayed here): "
# Disable the terminal echo for security reasons
system "stty -echo"
pass = gets.chomp
system "stty echo"
puts
 
#########################################################################################
 
puts "- Collecting paths..."
 
paths = []
paths << File.expand_path('~/Applications/')
paths << File.expand_path('/Applications/')
 
paths << File.expand_path('~/Library/Widgets')
paths << File.expand_path('/Library/Widgets')
 
paths << File.expand_path('~/Library/PreferencePanes')
paths << File.expand_path('/Library/PreferencePanes')
 
#########################################################################################
 
puts "- Collecting apps and widgets (This may need a little time. Please be patient!)"
 
installed_apps = []
paths.each do |path|
  # For each path execute the search and add the apps and widgets to the array
  puts " + Searching '#{path}'..."
  
  ['.wdgt', '.app', '.prefPane'].each do |extension|
    search_apps(path, extension).each do |app|
      installed_apps << app if !app.nil?
    end
  end
end
 
installed_apps.sort!.uniq!
 
puts " + Found #{installed_apps.length.to_s} applications."
 
#########################################################################################
 
puts "- Check which applications to send..."
 
puts " + Getting already added applications..."
added_apps = []
 
uri = URI.parse("http://osx.iusethis.com/user_opml/#{user}")
res = Net::HTTP.get_response(uri)
opml = REXML::Document.new(res.body)
 
opml.elements.each('//outline') do |ol|
  url = ol.attributes['xmlUrl']
  next if url.nil?
  added_apps << url[url.rindex('/')+1..url.length]
end
 
opml.elements.each('//Aliases') do |al|
  url = al.text
  next if url.nil?
  added_apps << url[url.rindex('/')+1..url.length]
end
 
#########################################################################################
 
send_apps = []
 
# Ask the user whether he wants to upload this app to iUseThis, if not
# delete it from the list.
installed_apps.each do |app|
  count = "(#{(installed_apps.index(app) + 1).to_s.rjust(3)} / #{installed_apps.length.to_s.rjust(3)})"
  print " + #{count} Mark application '#{app}' as used on iusethis? (Y/n/a) "
  
  if added_apps.include? app
    puts "n (Already added.)"
  else
    input = gets.chomp
    if input =~ /a/
      send_apps << installed_apps
      send_apps.flatten!
      break
    end
    (input =~ /n/) ? nil : send_apps.push(app)
  end
end
 
#########################################################################################
 
puts "- Sending data to iusethis.com"
 
send_apps.each do |app|
  # For each app or widget which has been found and is still in the list
  # send it once to the api service.
  url = "http://osx.iusethis.com/api/iusethis/" + app
  print " + Sending '#{app}'... "
  
  result = get_post_response url, user, pass
  
  message = resolve_message result
  
  # Analyse the result passed by the api
  case result
  when Net::HTTPSuccess
    puts "done. (#{result.body} other people use this too.)"
  else
    if result.nil?
      puts 'Redirect limit exceeded.'
      next
    end
    puts "failed. Reason: #{message}"
  end
  
end
 
#########################################################################################
 
puts "We are done. All selected apps should be online now if there was no error above."