aboutsummaryrefslogtreecommitdiff
path: root/subprojects/freeamo/src/main_functions~
blob: 7aec7e8209f1ecf266c20e64a971d04a465f67f1 (plain) (blame)
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
#!/usr/bin/env bash
#    This file is part of FreeAMO
#    Copyright (C) 2018 David Hedlund
#
#    FreeAMO 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.
#
#    FreeAMO 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/>.

function check_files {

    if [ ! -f "$run_path/FreeAMO-$check_type" ]; then
	
	echo "$run_path/FreeAMO-$check_type doesn't exist.";
	echo "Exiting" && exit
	
    else


	# Make sure all links are using SSL
	if grep -q "http://addons.mozilla.org/" $run_path/FreeAMO-$check_type; then
	    
	    echo "Change http://addons.mozilla.org/ to https://addons.mozilla.org/ (https)."
	    echo "Exiting" && exit
	    
	fi
	
    fi

}

function line_status {

    
    if [ "$file" == "$previous_file" ]; then
        
        ((++line))
        
    else
        
        line="0"; # Should not be 1
        
    fi

}

function amo_variables() {
    id="$(jq ".results[$entry].id" "$file")";
    average_daily_users="$(jq ".results[$entry].average_daily_users" "$file")";
    has_eula="$(jq ".results[$entry].has_eula" "$file")";
    slug="$(jq ".results[$entry].slug" "$file" | sed "s|^\"||; s|\"$||;")";
    current_version__id=$(jq ".results[$entry].current_version.id" "$file");
    
    # Names
    name__enUS=$(jq ".results[$entry].name" "$file" | sed "s|-||;" | jq .enUS | sed "s|^\"||; s|\"$||;" )
    name__enGB=$(jq ".results[$entry].name" "$file" | sed "s|-||;" | jq .enGB | sed "s|^\"||; s|\"$||;" )
    if [ "$name__enUS" != "null" ]; then name="$name__enUS";
    elif [ "$name__enGB" != "null" ]; then name="$name__enGB";
    else name=$(jq ".results[$entry].name[]" "$file" | sed "s|-||;" | jq . | sed "s|^\"||; s|\"$||;"); # Use the first avalible name if English is not avaliable
    fi

    
    if jq .results[$entry].current_version.files[0].permissions "$file" | grep -q "nativeMessaging"; then

        nativeMessaging__pass=false;

    else

        nativeMessaging__pass=true;
        
    fi
    
}

function amo_variables__licenses {
    
    license__amo_full_name="$(jq ".license.name" "$run_path/build/json/current_versions/$current_version__id.json" | sed "s|en-US|enUS|;" | jq .enUS | sed "s|^\"||; s|\"$||;")"
    
}

function essential_addon {

    if [ "$has_eula" = false ] && [ "$nativeMessaging__pass" = true ] && [ "$average_daily_users" -ge "$minimum_average_daily_users" ]; then

        essential_addon=true;

    else

        essential_addon=false;

    fi

}

#function hard_to_evaluate_addon {

        # curl "https://addons.mozilla.org/api/v3/addons/addon/nemid-nøglefilsprogram/" | jq .current_version.files[0].permissions | grep "nativeMessaging
    

    # API data: Add software dependencies - https://github.com/mozilla/addons-server/issues/8668
    # The API should be fixed. there are to many add-ons to keep track on if they have or not have software dependencies.

    # Old solution:

    # 1: Add this to FreeAMO-dependencies:
    #belgium-eid	eid-mw

    # 2: Uncomment this code:
    #    depends_on_external_program=false;
    #    while IFS= read -r dependencies; do
    #
    #        dependency_slug=$(echo $dependencies | awk '{print $1}');
    #        dependency=$(echo "$dependencies" | cut -f 2);
    #
    #        if [ "$dependency_slug" == "$slug" ]; then
    #
    #            depends_on_external_program=true;
    #
    #        fi
    #
    #    done < $run_path/FreeAMO-dependencies

#}

function progress {
    
    (>&2 echo -en "\r"; pv --progress --line-mode --size $pv__size --eta --timer) > /dev/null
    
}