<!DOCTYPE html>
<html>

<head>
  <title>Chats Protocols - AIL</title>
	<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">

  <!-- 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>

    <style>
        .chat-message-left,
        .chat-message-right {
            display: flex;
            flex-shrink: 0;
        }
        .chat-message-right {
            flex-direction: row-reverse;
            margin-left: auto
        }
        .divider:after,
        .divider:before {
            content: "";
            flex: 1;
            height: 2px;
            background: #eee;
        }
	</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">
                        <h4 class="text-secondary">{% if chat['username'] %}{{ chat["username"] }} {% else %} {{ chat['name'] }}{% endif %} :</h4> {{ chat["id"] }}
                        <ul class="list-group mb-2">
                            <li class="list-group-item py-0">
                                <table class="table">
                                    <thead class="">
                                    <tr>
                                        <th>Icon</th>
                                        <th>Name</th>
                                        <th>ID</th>
                                        <th>Created at</th>
                                        <th>First Seen</th>
                                        <th>Last Seen</th>
                                        <th>NB Sub-Channels</th>
                                    </tr>
                                    </thead>
                                    <tbody style="font-size: 15px;">
                                    <tr>
                                            <td></td>
                                            <td>{{ chat['name'] }}</td>
                                            <td>{{ chat['id']  }}</td>
                                            <td>{{ chat['created_at'] }}</td>
                                            <td>
                                                {% if chat['first_seen'] %}
                                                    {{ chat['first_seen'][0:4] }}-{{ chat['first_seen'][4:6] }}-{{ chat['first_seen'][6:8] }}
                                                {% endif %}
                                            </td>
                                            <td>
                                                {% if chat['last_seen'] %}
                                                    {{ chat['last_seen'][0:4] }}-{{ chat['last_seen'][4:6] }}-{{ chat['last_seen'][6:8] }}
                                                {% endif %}
                                            </td>
                                            <td>{{ chat['nb_subchannels'] }}</td>
                                    </tr>
                                    </tbody>
                                </table>
                            {% if chat['info'] %}
                                <li class="list-group-item py-0">
                                    <pre class="my-0">{{ chat['info'] }}</pre>
                                </li>
                            {% endif %}
                            </li>
                        </ul>

                    </div>
                </div>

                {% for tag in chat['tags_messages'] %}
                    <span class="badge badge-{{ bootstrap_label[loop.index0 % 5] }}">{{ tag }} <span class="badge badge-light">{{ chat['tags_messages'][tag] }}</span></span>
                {%  endfor %}

                {% if chat['subchannels'] %}
                    <h4>Sub-Channels:</h4>
                    <table id="tablesubchannels" class="table">
                        <thead class="bg-dark text-white">
                        <tr>
                            <th>Icon</th>
                            <th>Name</th>
                            <th>ID</th>
                            <th>Created at</th>
                            <th>First Seen</th>
                            <th>Last Seen</th>
                            <th>NB Messages</th>
                        </tr>
                        </thead>
                        <tbody style="font-size: 15px;">
                        {% for meta in chat["subchannels"] %}
                            <tr>
                                <td>
                                   <img src="{{ url_for('static', filename='image/ail-icon.png') }}" class="rounded-circle mr-1" alt="{{ meta['id'] }}" width="40" height="40">
                                </td>
                                <td><b>{{ meta['name'] }}</b></td>
                                <td><a href="{{ url_for('chats_explorer.objects_subchannel_messages') }}?uuid={{ meta['subtype'] }}&id={{ meta['id'] }}">{{ meta['id'] }}</a></td>
                                <td>{{ meta['created_at'] }}</td>
                                <td>
                                    {% if meta['first_seen'] %}
                                        {{ meta['first_seen'][0:4] }}-{{ meta['first_seen'][4:6] }}-{{ meta['first_seen'][6:8] }}
                                    {% endif %}
                                </td>
                                <td>
                                    {% if meta['last_seen'] %}
                                        {{ meta['last_seen'][0:4] }}-{{ meta['last_seen'][4:6] }}-{{ meta['last_seen'][6:8] }}
                                    {% endif %}
                                </td>
                                <td>{{ meta['nb_messages'] }}</td>
                            </tr>
                        {% endfor %}
                        </tbody>
                    </table>

                {% endif %}

                {% if chat['messages'] %}

                    <div class="position-relative">
                        <div class="chat-messages p-2">

                            {% for date in chat['messages'] %}

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

                                {% for mess in chat['messages'][date] %}

                                    <div class="chat-message-left pb-1">
                                        <div>
                                            <img src="{{ url_for('static', filename='image/ail-icon.png') }}" class="rounded-circle mr-1" alt="{{ mess['user-account']['id'] }}" width="40" height="40">
                                            <div class="text-muted small text-nowrap mt-2">{{ mess['hour'] }}</div>
                                        </div>
                                        <div class="flex-shrink-1 bg-light rounded py-2 px-3 ml-4 pb-4" style="overflow-x: auto">
                                            <div class="font-weight-bold mb-1">
                                                {% if mess['user-account']['username'] %}
                                                    {{ mess['user-account']['username']['id'] }}
                                                {% else %}
                                                    {{ mess['user-account']['id'] }}
                                                {% endif %}
                                            </div>
                                            {% if mess['reply_to'] %}
                                                <div class="flex-shrink-1 bg-white border rounded py-2 px-3 ml-4 mb-3" style="overflow-x: auto">
                                                    <div class="font-weight-bold mb-1">
                                                        {% if mess['reply_to']['user-account']['username'] %}
                                                            {{ mess['reply_to']['user-account']['username']['id'] }}
                                                        {% else %}
                                                            {{ mess['reply_to']['user-account']['id'] }}
                                                        {% endif %}
                                                    </div>
                                                    <pre class="my-0">{{ mess['reply_to']['content'] }}</pre>
                                                    {% for tag in mess['reply_to']['tags'] %}
                                                        <span class="badge badge-{{ bootstrap_label[loop.index0 % 5] }}">{{ tag }}</span>
                                                    {%  endfor %}
                                                    <div class="text-muted small text-nowrap">{{ mess['reply_to']['full_date'] }}</div>
    {#                                                <div class="">#}
    {#                                                    <a class="btn btn-light btn-sm text-secondary py-0" href="{{ url_for('correlation.show_correlation')}}?type={{ mess['reply_to']['type'] }}&subtype={{ mess['reply_to']['subtype'] }}&id={{ mess['reply_to']['id'] }}"><i class="fas fa-project-diagram"></i></a>#}
    {#                                                    <a class="btn btn-light btn-sm text-secondary py-0" href="{{ mess['reply_to']['link'] }}"><i class="fas fa-eye"></i></a>#}
    {#                                                </div>#}
                                                </div>
                                            {% endif %}
                                            <pre class="my-0">{{ mess['content'] }}</pre>
                                            {% for tag in mess['tags'] %}
                                                <span class="badge badge-{{ bootstrap_label[loop.index0 % 5] }}">{{ tag }}</span>
                                            {%  endfor %}
                                            <div class="">
                                                <a class="btn btn-light btn-sm text-secondary px-1" href="{{ url_for('correlation.show_correlation')}}?type={{ mess['type'] }}&subtype={{ mess['subtype'] }}&id={{ mess['id'] }}"><i class="fas fa-project-diagram"></i></a>
                                                <a class="btn btn-light btn-sm text-secondary px-1" href="{{ mess['link'] }}"><i class="fas fa-eye"></i></a>
                                            </div>
                                        </div>
                                    </div>

                                {% endfor %}
                                <br>
                            {% endfor %}

                        </div>
                    </div>

                {% endif %}

            </div>

        </div>
    </div>

<script>
    $(document).ready(function(){
        $("#page-Decoded").addClass("active");
        $("#nav_cve").addClass("active");

        {% if chat['subchannels'] %}
            $('#tablesubchannels').DataTable({
                "aLengthMenu": [[5, 10, 15, -1], [5, 10, 15, "All"]],
                "iDisplayLength": 10,
                "order": [[ 5, "desc" ]]
            });
        {% endif %}
  });

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>