aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c4cd989162753315fb9e6046389d9819d26d72d4 (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
.POSIX:

# you should comment this line @if non-GNU make
# and execute genpass.pl manually and edit config.mk
# with the resulting argon2id hash.
BOLD=\033[01m
RED=\033[31m
STOP=\033[0m
include config.mk
RANDOM_ARGON2 := $(shell perl genpass.pl > genpass.txt && tail -1 genpass.txt)

gpigeon: gpigeon-template.cgi link-tmpl-template.cgi
	@if test -n '$(MYMAIL_ADDR)'; then \
	  	printf "Your mail address is ${BOLD}$(MYMAIL_ADDR)${STOP}\n";\
	    gpg -o gpg.txt --yes --batch --armor --export $(MYMAIL_ADDR) ; \
	else \
	   	printf "${RED}There's no mail adress configured for gpigeon in your config.mk !${STOP}\n";\
	   	$(MAKE) clean ;\
	   exit 1;\
	fi
	
	@if test -n '$(MAILSENDER)'; then \
		printf "Encrypted mails will be sent from ${BOLD}$(MAILSENDER)${STOP}\n"; \
	else \
		printf "\t${RED}No mail sender adress configured in your config.mk. Fix this.${STOP}\n" ; \
		$(MAKE) clean ; \
		exit 1; \
	fi
	@if test -z '$(PREFIX)'; then \
		printf "\n$(RED)No \u0024PREFIX variable defined in config.mk.\n";\
		printf "Look into config.def.mk for the defaults and fix that.$(STOP)\n";\
		exit 1;\
	else \
		printf "\n\u0024PREFIX var is set to $(BOLD)$(PREFIX)$(STOP)";\
	fi
	
	@if test -z '$(WWWDIR)'; then\
		printf "\n${RED}No web directory defined in config.mk. Check your config.def.mk for the defaults and fix that.${STOP}";\
		exit 1; \
	else \
		printf "\nThe WWW directory is $(BOLD)$(WWWDIR)$(STOP)";\
	fi
	@if test -z '$(BINPREFIX)'; then \
	    printf "\n$(RED)No \u0024BINPREFIX variable defined in config.mk.\n";\
	    printf "Look into config.def.mk for the defaults and fix that in your config.mk.$(STOP)\n";\
	    exit 1;\
	else \
	    printf "\n\u0024BINPREFIX var is set to $(BOLD)$(BINPREFIX)$(STOP)";\
	fi
	
	@if test -n '$(COOKIES_DIR)'; then \
        	printf "\nThe cookies will be stored in ${BOLD}$(COOKIES_DIR)${STOP}"; \
    	else \
	        printf "\n${RED}No cookie directory configured. Check your config.def.mk for the defaults and fix that.${STOP}" ;\
        	exit 1; \
	fi
	@if test -n '$(_GPG_HOMEDIR)'; then \
		printf "\nThe home directory for GPG will be ${BOLD}$(_GPG_HOMEDIR)${STOP}" ;\
	else \
	        printf "\n${RED}The GPG home directory for gpigeon wasn't set in config.mk . Fix that.${STOP}" ;\
	        $(MAKE) clean ;\
        	exit 1;\
	fi
	@if test -n '$(LINK_TEMPLATE_PATH)'; then \
		printf "\nLink template is at ${BOLD}$(LINK_TEMPLATE_PATH)${STOP}"; \
	else \
		printf "\n${RED}The path for the link template wasn't set in your config.mk. Fix that.${STOP}" ;\
		exit 1;\
	fi
	@if test -n '$(UPLOAD_TMPDIR)'; then \
		printf "\nUploaded files will be temporary stored at ${BOLD}$(UPLOAD_TMPDIR)${STOP}"; \
	else \
		printf "\n${RED}The temporary directory for uploaded files wasn't set in your config.mk. Fix that.${STOP}" ;\
		exit 1;\
	fi
	
	@if test -n '$(MSG_FORM_CHAR_LIMIT)'; then \
        	printf "\nMessage form will have a message limit of ${BOLD}$(MSG_FORM_CHAR_LIMIT) characters${STOP}"; \
    	else \
	        printf "${RED}No character limits were defined in your config.mk. Fix that.${STOP}\n" ;\
	        $(MAKE) clean ;\
        	exit 1;\
	fi
	
	@if test -n '$(MAX_MB_LIMIT)'; then \
	   	printf "\nFilesize limit of uploads will be ${BOLD}$(MAX_MB_LIMIT) MB${STOP}\n"; \
	else \
	        printf "${RED}No filesize limit for uploads was set in your config.mk. Fix that.${STOP}\n" ;\
	        $(MAKE) clean ;\
			exit 1;\
	fi
	
	@sed -e 's|cookies_dir_goes_here|$(COOKIES_DIR)|g' gpigeon-template.cgi > gpigeon.cgi;
	@sed -e 's|bin_path_goes_here|$(BINPREFIX)|g' -i gpigeon.cgi;
	@sed -e 's|link_template_path_goes_here|$(LINK_TEMPLATE_PATH)|g' -i gpigeon.cgi; 
	@sed -e 's|your_addr_goes_here|$(MYMAIL_ADDR)|g' link-tmpl-template.cgi > link-tmpl.cgi
	@sed -e 's|bin_path_goes_here|$(BINPREFIX)|g' -i link-tmpl.cgi;
	@sed -e 's|sender_addr_goes_here|$(MAILSENDER)|g' -i link-tmpl.cgi;
	@sed -e "s|msg_char_limit_goes_here|$(MSG_FORM_CHAR_LIMIT)|g" -i link-tmpl.cgi;
	@sed -e 's|has_mailserver_goes_here|$(HAS_MAILSERVER)|g' -i link-tmpl.cgi;
	@sed -e 's|sender_addr_goes_here|$(MAILSENDER)|g' -i link-tmpl.cgi;
	@sed -e 's|gpg_homedir_goes_here|$(_GPG_HOMEDIR)|g' -i link-tmpl.cgi;
	@sed -e 's|tmp_dir_goes_here|$(UPLOAD_TMPDIR)|g' -i link-tmpl.cgi;
	@sed -e "s|max_mb_goes_here|$(MAX_MB_LIMIT)|g" -i link-tmpl.cgi;
	
	@if test -n '$(ARGON2ID_HASH)'; then\
		printf "\nThe argon2id hash is ${BOLD}${ARGON2ID_HASH}${STOP}\n"; \
		sed -e 's|argon2id_hash_goes_here|${ARGON2ID_HASH}|g' -i gpigeon.cgi; \
 	else \
		sed -e 's|qq{argon2id_hash_goes_here}|q{$(RANDOM_ARGON2)}|g' -i gpigeon.cgi; \
		printf "\nThe variable ARGON2ID_HASH wasn't declared in your config.mk thus a password \nand its argon2id hash as been generated (look into `pwd`/genpass.txt)."; \
		printf "\nYour password is:\n${BOLD}`head -1 genpass.txt`${STOP}"; \
		printf "\nAnd the hash is:\n${BOLD}%s${STOP}\n\n" '${RANDOM_ARGON2}'; \
		rm -f genpass.txt; \
	fi
	@if [ '${HAS_MAILSERVER}' == '1' ]; then \
		printf "Local mail server setup. ${BOLD}Mail::Sendmail module will be used to send the mails${STOP}.\n"; \
	else \
		printf "External mail server setup. ${BOLD}Net::SMTPS module will be used to send the mails${STOP}.\n"; \
		if test -n '$(MAILSENDER_PW)'; then \
			printf "\tPassword for ${BOLD}${MAILSENDER}${STOP} is %s.\n" '${MAILSENDER_PW}'; \
			sed -e 's|sender_pw_goes_here|$(MAILSENDER_PW)|g' -i link-tmpl.cgi; \
		else\
			printf "\t${RED}Password for the sender address wasn't set in your config.mk. Fix this${STOP}.\n";\
			$(MAKE) clean ; \
			exit 1; \
		fi; \
		if test -n '$(SMTP_DOMAIN)'; then \
			printf "\tSMTP server: ${BOLD}$(SMTP_DOMAIN)${STOP}\n"; \
			sed -e 's|smtp_domain_goes_here|$(SMTP_DOMAIN)|g' -i link-tmpl.cgi; \
		else\
			printf "\t${RED}No SMTP server was configured in your config.mk. Fix this.${STOP}\n";\
			$(MAKE) clean ; \
			exit 1; \
		fi; \
		if test -n '$(SMTP_PORT)'; then \
			printf "\tSMTP port: ${BOLD}$(SMTP_PORT)${STOP}\n"; \
			sed -e 's|smtp_port_goes_here|$(SMTP_PORT)|g' -i link-tmpl.cgi; \
		else \
			printf "\t${RED}No SMTP port configured in your config.mk. Fix this${STOP}.\n"; \
			$(MAKE) clean ; \
			exit 1; \
		fi; \
	fi
	$(MAKE) nginxconf
	@printf "\nDone preparing files. You can now type\nsudo make install\nin your terminal.\n"
		
install:
	$(MAKE) gpigeon;
	mkdir -p $(DESTDIR)$(COOKIES_DIR);
	mkdir -p $(DESTDIR)$(UPLOAD_DIR);
	mkdir -m700 -p $(DESTDIR)$(_GPG_HOMEDIR);
	GNUPGHOME="$(DESTDIR)$(_GPG_HOMEDIR)" gpg --import gpg.txt; \
	mkdir -p $(DESTDIR)$(WWWDIR)/cgi-bin/l
	install -Dm700 gpigeon.cgi $(DESTDIR)$(GPIGEON_PATH)
	install -Dm600 link-tmpl.cgi $(DESTDIR)$(LINK_TEMPLATE_PATH)
	install -Dm644 index.html favicon.ico styles.css -t $(DESTDIR)$(WWWDIR)/gpigeon/
	install -Dm755 merci/* -t $(DESTDIR)$(PREFIX)/merci/
	@if test -e '$(WWWDOMAIN).conf'; then\
		printf "\nInstalling $(WWWDOMAIN).conf into $(SITESENABLED)\n";\
		install -Dm644 $(WWWDOMAIN).conf -t $(DESTDIR)$(SITESENABLED);\
	fi
	chown $(WWWUSER):$(WWWGROUP) -R $(DESTDIR)$(GPIGEON_DIR) || exit 1;
	chown $(WWWUSER):$(WWWGROUP) -R $(DESTDIR)$(WWWDIR)|| exit 1;

nginxconf: nginx-example.conf
	@if test -n '$(WWWDOMAIN)' && test -n '$(WWWDIR)'; then\
		printf "Done generating $(WWWDOMAIN).conf for nginx.";\
	fi
	@sed -e 's|wwwpath_goes_here|$(WWWDIR)|g;s|domain_goes_here|$(WWWDOMAIN)|g' nginx-example.conf > $(WWWDOMAIN).conf ;\
	
	
uninstall:
	rm -rf $(DESTDIR)$(GPIGEON_DIR)
	rm -rf $(DESTDIR)$(WWWDIR)
	
clean:
	rm -f genpass.txt gpg.txt link-tmpl.cgi gpigeon.cgi $(WWWDOMAIN).conf

.PHONY: clean install uninstall