49 lines
1.2 KiB
Ruby
49 lines
1.2 KiB
Ruby
require_relative 'osia_helper'
|
|
|
|
UNIQUES = 'check-unique.txt' # should be unique
|
|
LINKS = 'check-links.txt' # allow dupes
|
|
INFO = 'check-info.txt' # errors are allowed
|
|
|
|
def apps_archived(apps)
|
|
a = apps.select {|a| a['tags'] != nil }.select {|b| b['tags'].include?'archive'}
|
|
a.sort_by { |k, v| k['title'] }
|
|
end
|
|
|
|
j = get_json
|
|
a = j['projects']
|
|
archived = apps_archived a
|
|
active = a.reject { |x| archived.include? x }
|
|
|
|
uniques = []
|
|
info = []
|
|
active.each do |z|
|
|
uniques.push z['source']
|
|
uniques.push z['screenshots'] unless z['screenshots'].nil?
|
|
info.push z['itunes'] unless z['itunes'].nil?
|
|
end
|
|
|
|
uniques.each_with_index { |z, i| puts "#{i+1} #{z}" }
|
|
|
|
puts "Writing #{UNIQUES}"
|
|
File.open(UNIQUES, 'w') { |f| f.puts uniques }
|
|
|
|
puts "Writing #{INFO}"
|
|
File.open(INFO, 'w') { |f| f.puts info }
|
|
|
|
links = []
|
|
active.each do |z|
|
|
links.push z['homepage'] unless z['homepage'].nil?
|
|
links.push z['title'] unless z['title'].nil?
|
|
links.push z['description'] unless z['description'].nil?
|
|
end
|
|
|
|
c = j['categories']
|
|
c.each do |z|
|
|
links.push z['title']
|
|
end
|
|
|
|
links.each_with_index { |z, i| puts "#{i+1} #{z}" }
|
|
|
|
puts "Writing #{LINKS}"
|
|
File.open(LINKS, 'w') { |f| f.puts links }
|