-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
162 lines (115 loc) · 6.3 KB
/
index.php
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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>On met en production ?</title>
<meta name="Content-Type" content="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Content-Language" content="fr">
<meta name="Description" content="'Est-ce qu'on met en prod aujourd'hui' est le mini-site qui t'indique si aujourd'hui est une bonne journée pour la mise en prod avec une bonne dose de gifs.">
<meta name="Keywords" content="gif, en prod, giffy, giphy, production, fun, lol, drole,Mise en prod, mise en prod, Mise en production, mise en production, mise, en , prod, gif, fun, lol, lundi, mardi, mercredi, jeud, vendredi, jours, jour, ">
<meta name="Subject" content="Mise en production">
<meta name="Copyright" content="original idea by estcequonmetenprod.info">
<meta name="Author" content="Mehdy Driouech">
<meta name="Publisher" content="Mehdy Driouech">
<meta name="Identifier-Url" content="mise-en-prod.mehdydriouech.fr">
<meta name="Reply-To" content="contact@mehdydriouech.fr">
<meta name="Revisit-After" content="2 days">
<meta name="Robots" content="all">
<meta name="Rating" content="general">
<meta name="Distribution" content="global">
<meta name="Geography" content="63000">
<meta name="Category" content="games">
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" type="text/css" href="style/style.css">
<style>
@import url('https://fonts.googleapis.com/css?family=Montserrat|Open+Sans|Tajawal');
</style>
</head>
<?php
include 'php/functions.php';
echo"<p class='titre'>Est-ce qu'on met en prod aujourd'hui ?</p>";
if (date("l")=="Monday"){
//Emoji
$text = "\\U1F60E"; // sun glaces
$emojiHtml = preg_replace("/\\\\u([0-9A-F]{2,5})/i", "&#x$1;", $text);
//gif array + random generation
$tags = array('happy','yeah','yes','ha','ok','cool');
$rand_keys = $tags[array_rand($tags, 1)];
echo'<p class="jours" aria-label="Lundi">On est <b>Lundi</b></p>';
echo'<p class="commentairePositif" aria-label="Commentaire mercredi"><b>OUI tu peux '.$emojiHtml.'</b></p>';
echo'<p class="gifs">'.RandomGiphy($rand_keys).'</p>';
}else if (date("l")=="Tuesday"){
//Emoji
$text = "\\U1F600"; // happy face
$emojiHtml = preg_replace("/\\\\u([0-9A-F]{2,5})/i", "&#x$1;", $text);
//gif array + random generation
$tags = array('happy','yeah','yes','ha','ok','party');
$rand_keys = $tags[array_rand($tags, 1)];
echo'<p class="jours" aria-label="Mardi">On est <b>Mardi</b></p>';
echo'<p class="commentairePositif" aria-label="Commentaire mercredi"><b>OUI tu peux '.$emojiHtml.'</b></p>';
echo'<p class="gifs">'.RandomGiphy($rand_keys).'</p>';
}else if (date("l")=="Wednesday"){
//Emoji
$text = "\\U1F60A"; // simple smile face
$emojiHtml = preg_replace("/\\\\u([0-9A-F]{2,5})/i", "&#x$1;", $text);
//gif array + random generation
$tags = array('happy','yeah','yes','ha','ok','dance');
$rand_keys = $tags[array_rand($tags, 1)];
echo'<p class="jours" aria-label="Mercredi">On est <b>Mercredi</b></p>';
echo'<p class="commentairePositif" aria-label="Commentaire mercredi"><b>OUI tu peux '.$emojiHtml.'</b></p>';
echo'<p class="gifs">'.RandomGiphy($rand_keys).'</p>';
}else if (date("l")=="Thursday"){
//Emoji
$text = "\\U1F914"; // thinking face
$emojiHtml = preg_replace("/\\\\u([0-9A-F]{2,5})/i", "&#x$1;", $text);
//gif array + random generation
$tags = array('maybe','sure','ahem','well','think','so','whatever','what');
$rand_keys = $tags[array_rand($tags, 1)];
echo'<p class="jeudi" aria-label="Jeudi">On est <b>Jeudi</b></p>';
echo'<p class="commentairePositif" aria-label="Commentaire Jeudi"><b><i>Hmm, tu penses que ca passe ?'.'</i></b>'.$emojiHtml.'</p>';
echo'<p class="gifs">'.RandomGiphy($rand_keys).'</p>';
}else if (date("l")=="Friday"){
//Emoji
$text = "\\U1F621"; // NO face
$emojiHtml = preg_replace("/\\\\u([0-9A-F]{2,5})/i", "&#x$1;", $text);
//gif array + random generation
$tags = array('nope','no','hell','fire','stop','calmdown','annoyed','ugh','eyeroll','troll','fuck');
$rand_keys = $tags[array_rand($tags, 1)];
echo'<p class="vendredi" aria-label="Vendredi"<b>ON EST VENDREDI</b></p>';
echo'<p class="commentaireVendredi" aria-label="Commentaire Vendredi"><b>NON NON NON NON'.$emojiHtml.'</b></p>';
echo'<p class="gifs">'.RandomGiphy($rand_keys).'</p>';
}else if (date("l")=="Saturday"){
//Emoji
$text = "\\U1F389"; // Party face
$emojiHtml = preg_replace("/\\\\u([0-9A-F]{2,5})/i", "&#x$1;", $text);
//gif array + random generation
$tags = array('happy','saturday','weekend','nice');
$rand_keys = $tags[array_rand($tags, 1)];
echo'<p class="jours" aria-label="Samedi">On est <b>Samedi</b></p>';
echo'<p class="commentairePositif" aria-label="commentaire Samedi"><b>On ne bosse pas !'.$emojiHtml.'</b></p>';
echo'<p class="gifs">'.RandomGiphy($rand_keys).'</p>';
}else if (date("l")=="Sunday"){
//Emoji
$text = "\\U1F389"; // Party face
$emojiHtml = preg_replace("/\\\\u([0-9A-F]{2,5})/i", "&#x$1;", $text);
//gif array + random generation
$tags = array('happy','alleluia','sunday','good','clapping');
$rand_keys = $tags[array_rand($tags, 1)];
echo'<p class="jours" aria-label="Dimanche">On est <b>Dimanche</b></p>';
echo'<p class="commentairePositif" aria-label="Commentaire Dimanche"><b>Le jour du seigneur on ne travail pas ! '.$emojiHtml.'</b></p>';
echo'<p class="gifs">'.RandomGiphy($rand_keys).'</p>';
} else {
echo'ERREUR';
}
//appels fonctions de tracking
compteurvisite();
IpVisiteur();
// récupération infos compteurs
$compteur_f = fopen('log/compteur.txt', 'r+');
$compte = fgets($compteur_f);
// affichage page
echo'<p class="compteurs" aria-label="compteur de vues">2018 - page vues '.$compte.' fois</p>';
echo'<p class="mentions"><a href="https://www.estcequonmetenprodaujourdhui.info/" aria-label="Idée Originale">idée originale : estcequonmetenprodaujourdhui.info</a></p>';
echo'<p class="mentions"><a href="https://github.com/MehdyDriouech/mise-en-prod" aria-label="Dépot Github">Github </a></p>';
echo'<p class="mentions"><a href="http://mise-en-prod.mehdydriouech.fr/giphy.html" aria-label="giphy"><img src="img/GiphyAttribution.png" alt="Giphy"></a></p>';
?>