2023-08-18 11:05:21 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2023-11-02 16:28:33 +01:00
|
|
|
<title>Sub-Channel Messages - AIL</title>
|
2023-08-18 11:05:21 +02:00
|
|
|
<link rel="icon" href="{{ url_for('static', filename='image/ail-icon.png') }}">
|
|
|
|
|
|
|
|
<!-- Core CSS -->
|
|
|
|
<link href="{{ url_for('static', filename='css/bootstrap4.min.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', filename='css/font-awesome.min.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', filename='css/dataTables.bootstrap.min.css') }}" rel="stylesheet">
|
|
|
|
{# <link href="{{ url_for('static', filename='css/daterangepicker.min.css') }}" rel="stylesheet">#}
|
|
|
|
|
|
|
|
<!-- JS -->
|
|
|
|
<script src="{{ url_for('static', filename='js/jquery.js')}}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/popper.min.js')}}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/bootstrap4.min.js')}}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/jquery.dataTables.min.js')}}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/dataTables.bootstrap.min.js')}}"></script>
|
|
|
|
{# <script src="{{ url_for('static', filename='js/moment.min.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/jquery.daterangepicker.min.js') }}"></script>#}
|
|
|
|
<script src="{{ url_for('static', filename='js/d3.min.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/d3/sparklines.js')}}"></script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.chat-message-left,
|
|
|
|
.chat-message-right {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
.chat-message-right {
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
margin-left: auto
|
|
|
|
}
|
2023-11-06 14:08:23 +01:00
|
|
|
.divider:after,
|
|
|
|
.divider:before {
|
|
|
|
content: "";
|
|
|
|
flex: 1;
|
|
|
|
height: 2px;
|
|
|
|
background: #eee;
|
|
|
|
}
|
2023-08-18 11:05:21 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
{% include 'nav_bar.html' %}
|
|
|
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
{% include 'sidebars/sidebar_objects.html' %}
|
|
|
|
|
|
|
|
<div class="col-12 col-lg-10" id="core_content">
|
|
|
|
|
|
|
|
<div class="card my-3">
|
|
|
|
<div class="card-header" style="background-color:#d9edf7;font-size: 15px">
|
2023-11-08 13:07:00 +01:00
|
|
|
<h3 class="text-secondary">{% if subchannel['chat']['name'] %}{{ subchannel['chat']['name'] }} {% else %} {{ subchannel['chat']['id'] }}{% endif %} - {% if subchannel['username'] %}{{ subchannel["username"]["id"] }} {% else %} {{ subchannel['name'] }}{% endif %} :</h3> {{ subchannel["id"] }}
|
2023-08-18 11:05:21 +02:00
|
|
|
<ul class="list-group mb-2">
|
|
|
|
<li class="list-group-item py-0">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-10">
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2023-11-06 14:08:23 +01:00
|
|
|
<th>Name</th>
|
2023-11-07 15:24:40 +01:00
|
|
|
<th>Created at</th>
|
2023-08-18 11:05:21 +02:00
|
|
|
<th>First seen</th>
|
|
|
|
<th>Last seen</th>
|
2023-11-02 16:28:33 +01:00
|
|
|
<th>Username</th>
|
|
|
|
<th>Nb Messages</th>
|
2023-12-06 16:26:26 +01:00
|
|
|
<th>Participants</th>
|
2023-08-18 11:05:21 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2023-11-06 14:08:23 +01:00
|
|
|
{{ subchannel['name'] }}
|
|
|
|
</td>
|
2023-11-07 15:24:40 +01:00
|
|
|
<td>{{ subchannel["created_at"] }}</td>
|
2023-11-06 14:08:23 +01:00
|
|
|
<td>
|
|
|
|
{% if subchannel['first_seen'] %}
|
|
|
|
{{ subchannel['first_seen'][0:4] }}-{{ subchannel['first_seen'][4:6] }}-{{ subchannel['first_seen'][6:8] }}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if subchannel['last_seen'] %}
|
|
|
|
{{ subchannel['last_seen'][0:4] }}-{{ subchannel['last_seen'][4:6] }}-{{ subchannel['last_seen'][6:8] }}
|
|
|
|
{% endif %}
|
2023-08-18 11:05:21 +02:00
|
|
|
</td>
|
2023-11-02 16:28:33 +01:00
|
|
|
<td>
|
|
|
|
{% if 'username' in subchannel %}
|
2023-11-08 13:07:00 +01:00
|
|
|
{% if subchannel['username'] %}
|
|
|
|
{{ subchannel['username']['id'] }}
|
|
|
|
{% endif %}
|
2023-11-02 16:28:33 +01:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>{{ subchannel['nb_messages'] }}</td>
|
2023-12-06 16:26:26 +01:00
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('chats_explorer.chats_explorer_chat_participants')}}?type=chat-subchannel&subtype={{ subchannel['subtype'] }}&id={{ subchannel['id'] }}"><i class="far fa-user-circle"></i> {{ subchannel['nb_participants']}}</a>
|
|
|
|
</td>
|
2023-08-18 11:05:21 +02:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
2023-11-06 16:38:31 +01:00
|
|
|
{% if subchannel['info'] %}
|
|
|
|
<li class="list-group-item py-0">
|
|
|
|
<pre class="my-0">{{ subchannel['info'] }}</pre>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
2023-08-18 11:05:21 +02:00
|
|
|
<li class="list-group-item py-0">
|
|
|
|
<br>
|
|
|
|
<div class="mb-3">
|
|
|
|
Tags:
|
2023-11-02 16:28:33 +01:00
|
|
|
{% for tag in subchannel['tags'] %}
|
2023-08-18 11:05:21 +02:00
|
|
|
<button class="btn btn-{{ bootstrap_label[loop.index0 % 5] }}" data-toggle="modal" data-target="#edit_tags_modal"
|
2023-11-02 16:28:33 +01:00
|
|
|
data-tagid="{{ tag }}" data-objtype="chat" data-objsubtype="{{ subchannel["subtype"] }}" data-objid="{{ subchannel["id"] }}">
|
2023-08-18 11:05:21 +02:00
|
|
|
{{ tag }}
|
|
|
|
</button>
|
|
|
|
{% endfor %}
|
|
|
|
<button type="button" class="btn btn-light" data-toggle="modal" data-target="#add_tags_modal">
|
|
|
|
<i class="far fa-plus-square"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
2023-12-11 00:46:15 +01:00
|
|
|
{# {% with obj_type='chat', obj_id=subchannel['id'], obj_subtype=subchannel['subtype'] %}#}
|
|
|
|
{# {% include 'modals/investigations_register_obj.html' %}#}
|
|
|
|
{# {% endwith %}#}
|
|
|
|
{# <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#investigations_register_obj_modal">#}
|
|
|
|
{# <i class="fas fa-microscope"></i> Investigations#}
|
|
|
|
{# </button>#}
|
2023-08-18 11:05:21 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-12-04 10:26:02 +01:00
|
|
|
|
|
|
|
{% if subchannel['threads'] %}
|
|
|
|
<table id="tablethreads" class="table">
|
|
|
|
<thead class="bg-dark text-white">
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Created at</th>
|
|
|
|
<th>First seen</th>
|
|
|
|
<th>Last seen</th>
|
|
|
|
<th>Nb Messages</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
{% for thread in subchannel['threads'] %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('chats_explorer.objects_thread_messages')}}?uuid={{ thread['subtype'] }}&id={{ thread['id'] }}">{{ thread['name'] }} <i class="far fa-comment"></i> {{ thread['nb_messages'] }} Messages</a>
|
|
|
|
</td>
|
|
|
|
<td>{{ thread["created_at"] }}</td>
|
|
|
|
<td>
|
|
|
|
{% if thread['first_seen'] %}
|
|
|
|
{{ thread['first_seen'][0:4] }}-{{ thread['first_seen'][4:6] }}-{{ thread['first_seen'][6:8] }}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if thread['last_seen'] %}
|
|
|
|
{{ thread['last_seen'][0:4] }}-{{ thread['last_seen'][4:6] }}-{{ thread['last_seen'][6:8] }}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>{{ thread['nb_messages'] }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
|
2023-11-06 14:08:23 +01:00
|
|
|
{% for tag in subchannel['tags_messages'] %}
|
|
|
|
<span class="badge badge-{{ bootstrap_label[loop.index0 % 5] }}">{{ tag }} <span class="badge badge-light">{{ subchannel['tags_messages'][tag] }}</span></span>
|
2023-11-02 16:28:33 +01:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class="list-group d-inline-block">
|
|
|
|
{% for date in messages %}
|
|
|
|
<a class="list-group-item list-group-item-action" href="#date_section_{{ date }}">{{ date }}</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-11-16 14:50:03 +01:00
|
|
|
<span class="mt-3">
|
|
|
|
{% include 'objects/image/block_blur_img_slider.html' %}
|
|
|
|
</span>
|
2023-12-11 12:01:34 +01:00
|
|
|
{% with translate_url=url_for('chats_explorer.objects_subchannel_messages', uuid=subchannel['subtype']), obj_id=subchannel['id'], pagination=subchannel['pagination'] %}
|
2023-12-04 15:47:58 +01:00
|
|
|
{% include 'chats_explorer/block_translation.html' %}
|
|
|
|
{% endwith %}
|
2023-12-11 00:46:15 +01:00
|
|
|
{% with obj_subtype=subchannel['subtype'], obj_id=subchannel['id'], url_endpoint=url_for("chats_explorer.objects_subchannel_messages"), nb=subchannel['pagination']['nb'] %}
|
|
|
|
{% set date_from=subchannel['first_seen'] %}
|
|
|
|
{% set date_to=subchannel['last_seen'] %}
|
|
|
|
{% include 'block_obj_time_search.html' %}
|
|
|
|
{% endwith %}
|
|
|
|
{% with endpoint_url=url_for('chats_explorer.objects_subchannel_messages', uuid=subchannel['subtype']), pagination=subchannel['pagination'] %}
|
|
|
|
{% set endpoint_url = endpoint_url + "&id=" + subchannel['id'] + "&nb=" + subchannel['pagination']['nb'] | string %}
|
|
|
|
{% if translation_target %}
|
|
|
|
{% set endpoint_url = endpoint_url + "&target=" + translation_target %}
|
|
|
|
{% endif %}
|
|
|
|
{% include 'chats_explorer/pagination.html' %}
|
|
|
|
{% endwith %}
|
2023-11-16 14:50:03 +01:00
|
|
|
|
2023-08-18 11:05:21 +02:00
|
|
|
<div class="position-relative">
|
2023-11-06 14:08:23 +01:00
|
|
|
<div class="chat-messages p-2">
|
2023-08-18 11:05:21 +02:00
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
{% for date in subchannel['messages'] %}
|
2023-11-06 14:08:23 +01:00
|
|
|
|
|
|
|
<div class="divider d-flex align-items-center mb-4">
|
|
|
|
<p class="text-center h2 mx-3 mb-0" style="color: #a2aab7;">
|
|
|
|
<span class="badge badge-secondary mb-2" id="date_section_{{ date }}">{{ date }}</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
{% for mess in subchannel['messages'][date] %}
|
2023-08-18 11:05:21 +02:00
|
|
|
|
2023-11-16 14:50:03 +01:00
|
|
|
{% with message=mess %}
|
|
|
|
{% include 'chats_explorer/block_message.html' %}
|
|
|
|
{% endwith %}
|
2023-08-18 11:05:21 +02:00
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
<br>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-12-11 00:46:15 +01:00
|
|
|
{% with endpoint_url=url_for('chats_explorer.objects_subchannel_messages', uuid=subchannel['subtype']), pagination=subchannel['pagination'] %}
|
|
|
|
{% set endpoint_url = endpoint_url + "&id=" + subchannel['id'] + "&nb=" + subchannel['pagination']['nb'] | string %}
|
|
|
|
{% if translation_target %}
|
|
|
|
{% set endpoint_url = endpoint_url + "&target=" + translation_target %}
|
|
|
|
{% endif %}
|
|
|
|
{% include 'chats_explorer/pagination.html' %}
|
|
|
|
{% endwith %}
|
|
|
|
|
2023-08-18 11:05:21 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var chart = {};
|
|
|
|
$(document).ready(function(){
|
|
|
|
$("#page-Decoded").addClass("active");
|
|
|
|
$("#nav_chat").addClass("active");
|
2023-12-04 10:26:02 +01:00
|
|
|
{% if subchannel['threads'] %}
|
|
|
|
$('#tablethreads').DataTable({
|
|
|
|
"aLengthMenu": [[5, 10, 15, -1], [5, 10, 15, "All"]],
|
|
|
|
"iDisplayLength": 10,
|
|
|
|
"order": [[ 3, "desc" ]]
|
|
|
|
});
|
|
|
|
{% endif %}
|
2023-08-18 11:05:21 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
function toggle_sidebar(){
|
|
|
|
if($('#nav_menu').is(':visible')){
|
|
|
|
$('#nav_menu').hide();
|
|
|
|
$('#side_menu').removeClass('border-right')
|
|
|
|
$('#side_menu').removeClass('col-lg-2')
|
|
|
|
$('#core_content').removeClass('col-lg-10')
|
|
|
|
}else{
|
|
|
|
$('#nav_menu').show();
|
|
|
|
$('#side_menu').addClass('border-right')
|
|
|
|
$('#side_menu').addClass('col-lg-2')
|
|
|
|
$('#core_content').addClass('col-lg-10')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|