getfile and convo gen
[scannr.git] / generateConvos.php
blob:a/generateConvos.php -> blob:b/generateConvos.php
--- a/generateConvos.php
+++ b/generateConvos.php
@@ -8,18 +8,26 @@
 $convo = Array();
 foreach ($recordings as $i => $recording) {
 
-	if (count($convo) > 0 && strcasecmp($convo[count($convos)]['tgid'], $recording['tgid']) != 0) {
+	if (count($convo) > 0) {
+		echo "<br> ".strcasecmp($convos[count($convos)-1][0]['call_timestamp'],$recording['call_timestamp']);
+		if (abs(strcasecmp($convos[count($convos)-1][0]['call_timestamp'],$recording['call_timestamp'])) > 2) {
+			echo " ".$convos[count($convos)-1][0]['call_timestamp']." ".$recording['call_timestamp'];
+		}
+		if (strcasecmp($convos[count($convos)-1][0]['tgid'], $recording['tgid']) != 0 ) {
 		$convos[] = $convo;
 		$convo = Array();
+		}
 	} ;
 	//print_r($recording);
 	$convo[] = $recording;
 	//print_r($convo);
-	echo "<br>\n";
+	//echo "<br>\n";
 }
 foreach ($convos as $i => $convo) {
-	print_r($convo);
-	echo "<br>\n";
+	foreach($convo as $recording) {
+		echo $recording['filename']." , ";
+	}
+	echo "<br><hr>\n";
 }
 ?>