aboutsummaryrefslogtreecommitdiff
path: root/subprojects/freeamo/src/main_functions
blob: daa779f03a44bad86f771b98da039b00004a9a2b (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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#!/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 latest_debranded_trisquel_version {
    
    # All debranded programs starts with "i" so all of them are in Trisquels "/i/" directory
    wget -qO- "http://archive.trisquel.info/trisquel/pool/main/i/$debranded_package/?C=N;O=D" | sed "s|\"|\\n|g; s|-|\\n|g" | grep "$debranded_package"_ | head -n 1 | sed "s|"$debranded_package"_||"
    
}

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

}

# Begin locale code

function do-locale {

    echo "####################"
    
    tmp__en_US=$(jq ".results[$entry].$locale_description" "$file" | sed "s|en-US|en_US|" | jq -r .en_US  )
    tmp__en_GB=$(jq ".results[$entry].$locale_description" "$file" | sed "s|en-GB|en_GB|" | jq -r .en_GB  )
    # Use the first avalible if English is not avaliable
    tmp=$(jq -r ".results[$entry] | select(.$locale_description != null) | .$locale_description[]" "$file" | head -n 1) || [[ $? == 141 ]] # Avoid `head -n 1` error `returned 141`
    
    if [ "$tmp__en_US" != "null" ]; then

        if [ "$locale_description" == "name" ]; then
            
            name="$tmp__en_US";

        elif [ "$locale_description" == "summary" ]; then
            
            summary="$tmp__en_US";

        elif [ "$locale_description" == "description" ]; then
            
            description="$tmp__en_US";

        elif [ "$locale_description" == "homepage" ]; then
            
            homepage="$tmp__en_US";
            
        elif [ "$locale_description" == "support_url" ]; then
            
            support_url="$tmp__en_US";

        fi


    elif [ "$tmp__en_GB" != "null" ]; then

        if [ "$locale_description" == "name" ]; then
            
            name="$tmp__en_GB";

        elif [ "$locale_description" == "summary" ]; then
            
            summary="$tmp__en_GB";

        elif [ "$locale_description" == "description" ]; then
            
            description="$tmp__en_GB";

        elif [ "$locale_description" == "homepage" ]; then
            
            homepage="$tmp__en_GB";
            
        elif [ "$locale_description" == "support_url" ]; then
            
            support_url="$tmp__en_GB";
            
        fi
        
    elif [ "$tmp" != "null" ]; then

        if [ "$locale_description" == "name" ]; then
            
            name="$tmp";

        elif [ "$locale_description" == "summary" ]; then
            
            summary="$tmp";

        elif [ "$locale_description" == "description" ]; then
            
            description="$tmp";

        elif [ "$locale_description" == "homepage" ]; then
            
            homepage="$tmp";
            
        elif [ "$locale_description" == "support_url" ]; then
            
            support_url="$tmp";
            
        fi
        
    fi
    
    # Use summary if description is not provided
    if [ "$description" == "" ]; then
        
        description="$summary"
        
    fi

    
}

# End locale code


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 -r ".results[$entry].slug" "$file")";
    current_version__id=$(jq ".results[$entry].current_version.id" "$file");

    source "$run_path/src/main_functions"
    locale_description="name"
    do-locale

    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|en_US|;" | jq -r .en_US)"
    
}

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 pv__progress {

    if [ ! "$pv__discard" = true ] && ! $debug; then

        (pv --progress --line-mode --size "$pv__size" --timer) > /dev/null

    else

        tee
        
    fi
    
}


function format_description__mixed_html_to_mediawiki {

    sed "
# Remove Mozilla tracking links
s|https://outgoing.prod.mozaws.net/v1/.\\{65\\}||g; s|%3A|:|g; s|%23|#|g

# Remove reduntant backslashes. Pandoc will convert quotes regardless.
s|\\\\\\\"|\\\"|g


"

}

function format_description__after_pandoc {

    sed "

### Fix formatting that cannot be fixed by Pandoc since it's not HTML

# Fix line breaks. 
s|\\\\n|\\n|g

# Remove \t
s|\\\\t||g
"
    # Change local links to external links
    
}

function format_description {

    format_description__mixed_html_to_mediawiki | pandoc -f html -t mediawiki | format_description__after_pandoc

}