forked from 2factorauth/twofactorauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verify.rb
103 lines (87 loc) · 3.15 KB
/
verify.rb
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
require 'yaml'
require 'fastimage'
require 'kwalify'
@output = 0
# YAML tags related to TFA
@tfa_tags = {
# YAML tags for TFA Yes
true => %w[email hardware software sms phone doc],
# YAML tags for TFA No
false => %w[status twitter facebook email_address lang]
}.freeze
# Image max size (in bytes)
@img_max_size = 2500
# Image dimensions
@img_dimensions = [32, 32]
# Image format used for all images in the 'img/' directories.
@img_extension = '.png'
# Send error message
def error(msg)
@output += 1
puts "<------------ ERROR ------------>\n" if @output == 1
puts "#{@output}. #{msg}"
end
# rubocop:disable AbcSize,CyclomaticComplexity
def test_img(img, name, imgs)
# Exception if image file not found
raise "#{name} image not found." unless File.exist?(img)
# Remove img from array unless it doesn't exist (double reference case)
imgs.delete_at(imgs.index(img)) unless imgs.index(img).nil?
# Check image dimensions
error("#{img} is not #{@img_dimensions.join('x')} pixels.")\
unless FastImage.size(img) == @img_dimensions
# Check image file extension and type
error("#{img} is not using the #{@img_extension} format.")\
unless File.extname(img) == @img_extension && FastImage.type(img) == :png
# Check image file size
img_size = File.size(img)
return unless img_size > @img_max_size
error("#{img} should not be larger than #{@img_max_size} bytes. It is"\
" currently #{img_size} bytes.")
end
# rubocop:enable AbcSize,CyclomaticComplexity
# Load each section, check for errors such as invalid syntax
# as well as if an image is missing
begin
sections = YAML.load_file('_data/sections.yml')
# Check sections.yml alphabetization
error('section.yml is not alphabetized by name') \
if sections != (sections.sort_by { |section| section['id'].downcase })
schema = YAML.load_file('websites_schema.yml')
validator = Kwalify::Validator.new(schema)
sections.each do |section|
data = YAML.load_file("_data/#{section['id']}.yml")
websites = data['websites']
errors = validator.validate(data)
errors.each do |e|
error("#{websites.at(e.path.split('/')[2].to_i)['name']}: #{e.message}")
end
# Check section alphabetization
error("_data/#{section['id']}.yml is not alphabetized by name") \
if websites != (websites.sort_by { |website| website['name'].downcase })
# Collect list of all images for section
imgs = Dir["img/#{section['id']}/*"]
websites.each do |website|
@tfa_tags[!website['tfa']].each do |tag|
next if website[tag].nil?
error("\'#{tag}\' should NOT be "\
"present when tfa: #{website['tfa'] ? 'true' : 'false'}.")
end
test_img("img/#{section['id']}/#{website['img']}", website['name'],
imgs)
end
# After removing images associated with entries in test_img, alert
# for unused or orphaned images
imgs.each { |img| next unless img.nil? error("#{img} is not used") }
end
exit 1 if @output > 0
rescue Psych::SyntaxError => e
puts "<------------ ERROR in a YAML file ------------>\n"
puts e
exit 1
rescue => e
puts e
exit 1
else
puts "<------------ No errors. You\'re good to go! ------------>\n"
end