summary refs log tree commit diff
path: root/webclient/index.html
blob: f233919e3dc8bbd15b537e03920c337c443a9844 (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
<!doctype html>
<html xmlns:ng="http://angularjs.org" ng-app="matrixWebClient" ng-controller="MatrixWebClientController">
<head>
    <title>[matrix]</title>
        
    <link rel="stylesheet" href="app.css">
    <link rel="stylesheet" href="mobile.css">
    
    <link rel="icon" href="favicon.ico">
   
    <meta name="viewport" content="width=device-width">
   
    <script type='text/javascript' src='js/jquery-1.8.3.min.js'></script>
    <script type="text/javascript" src="https://www.google.com/recaptcha/api/js/recaptcha_ajax.js"></script> 
    <script src="js/angular.min.js"></script>
    <script src="js/angular-route.min.js"></script>
    <script src="js/angular-sanitize.min.js"></script>
    <script src="js/angular-animate.min.js"></script>
    <script type='text/javascript' src='js/ng-infinite-scroll-matrix.js'></script>
    <script type='text/javascript' src='js/autofill-event.js'></script>
    <script src="app.js"></script>
    <script src="config.js"></script>
    <script src="app-controller.js"></script>
    <script src="app-directive.js"></script>
    <script src="app-filter.js"></script>
    <script src="home/home-controller.js"></script>
    <script src="login/login-controller.js"></script>
    <script src="login/register-controller.js"></script>
    <script src="recents/recents-controller.js"></script>
    <script src="recents/recents-filter.js"></script>
    <script src="room/room-controller.js"></script>
    <script src="room/room-directive.js"></script>
    <script src="settings/settings-controller.js"></script>
    <script src="user/user-controller.js"></script>
    <script src="components/matrix/matrix-service.js"></script>
    <script src="components/matrix/matrix-filter.js"></script>
    <script src="components/matrix/matrix-call.js"></script>
    <script src="components/matrix/matrix-phone-service.js"></script>
    <script src="components/matrix/event-stream-service.js"></script>
    <script src="components/matrix/event-handler-service.js"></script>
    <script src="components/matrix/presence-service.js"></script>
    <script src="components/fileInput/file-input-directive.js"></script>
    <script src="components/fileUpload/file-upload-service.js"></script>
    <script src="components/utilities/utilities-service.js"></script>
</head>

<body>
    <div id="videoBackground" ng-class="videoMode">
        <div id="videoContainer" ng-class="videoMode">
            <div id="videoContainerPadding"></div>
            <video id="localVideo" ng-class="[videoMode, currentCall.state]" ng-show="currentCall && currentCall.type == 'video' && (currentCall.state == 'connected' || currentCall.state == 'connecting' || currentCall.state == 'invite_sent' || currentCall.state == 'ended')"></video>
            <video id="remoteVideo" ng-class="[videoMode, currentCall.state]" ng-show="currentCall && currentCall.type == 'video' && (currentCall.state == 'connected' || (currentCall.state == 'ended' && currentCall.didConnect))"></video>
        </div>
    </div>

    <div id="header">
        <!-- Do not show buttons on the login page -->
        <div id="headerContent" ng-hide="'/login' == location || '/register' == location">
            <div id="callBar" ng-show="currentCall">
                <img id="callPeerImage" ng-show="currentCall.userProfile.avatar_url" ngSrc="{{ currentCall.userProfile.avatar_url }}" />
                <img class="callIcon" src="img/green_phone.png" ng-show="currentCall.state != 'ended'" />
                <img class="callIcon" id="callEndedIcon" src="img/red_phone.png" ng-show="currentCall.state == 'ended'" />
                <div id="callPeerNameAndState">
                    <span id="callPeerName">{{ currentCall.userProfile.displayname }}</span>
                    <br />
                    <span id="callState">
                        <span ng-show="currentCall.state == 'invite_sent'">Calling...</span>
                        <span ng-show="currentCall.state == 'ringing' && currentCall && currentCall.type == 'video'">Incoming Video Call</span>
                        <span ng-show="currentCall.state == 'ringing' && currentCall && currentCall.type == 'voice'">Incoming Voice Call</span>
                        <span ng-show="currentCall.state == 'connecting'">Call Connecting...</span>
                        <span ng-show="currentCall.state == 'connected'">Call Connected</span>
                        <span ng-show="currentCall.state == 'ended' && currentCall.hangupReason == 'ice_failed'">Media Connection Failed{{ haveTurn ? "" : " (VoIP relaying unsupported by Home Server)" }}</span>
                        <span ng-show="currentCall.state == 'ended' && !currentCall.hangupReason && !currentCall.didConnect && currentCall.direction == 'outbound' && currentCall.hangupParty == 'remote'">Call Rejected</span>
                        <span ng-show="currentCall.state == 'ended' && !currentCall.hangupReason && !currentCall.didConnect && currentCall.direction == 'outbound' && currentCall.hangupParty == 'local'">Call Canceled</span>
                        <span ng-show="currentCall.state == 'ended' && currentCall.hangupReason == 'invite_timeout' && !currentCall.didConnect && currentCall.direction == 'outbound' && currentCall.hangupParty == 'local'">User Not Responding</span>
                        <span ng-show="currentCall.state == 'ended' && !currentCall.hangupReason && currentCall.didConnect && currentCall.direction == 'outbound'">Call Ended</span>
                        <span ng-show="currentCall.state == 'ended' && !currentCall.hangupReason && !currentCall.didConnect && currentCall.direction == 'inbound'">Call Canceled</span>
                        <span ng-show="currentCall.state == 'ended' && !currentCall.hangupReason && currentCall.didConnect && currentCall.direction == 'inbound'">Call Ended</span>
                        <span ng-show="currentCall.state == 'wait_local_media'">Waiting for media permission...</span>
                    </span>
                </div>
                <span ng-show="currentCall.state == 'ringing'">
                    <button ng-click="answerCall()" ng-disabled="!isWebRTCSupported" title="{{isWebRTCSupported ? '' : 'Your browser does not support VoIP' }}">Answer {{ currentCall.type }} call</button>
                    <button ng-click="hangupCall()">Reject</button>
                </span>
                <button ng-click="hangupCall()" ng-show="currentCall && currentCall.state != 'ringing' && currentCall.state != 'ended' && currentCall.state != 'fledgling'">Hang up</button>
                <audio id="ringAudio" loop>
                    <source src="media/ring.ogg" type="audio/ogg" />
                    <source src="media/ring.mp3" type="audio/mpeg" />
                </audio>
                <audio id="ringbackAudio" loop>
                    <source src="media/ringback.ogg" type="audio/ogg" />
                    <source src="media/ringback.mp3" type="audio/mpeg" />
                </audio>
                <audio id="callendAudio">
                    <source src="media/callend.ogg" type="audio/ogg" />
                    <source src="media/callend.mp3" type="audio/mpeg" />
                </audio>
                <audio id="busyAudio">
                    <source src="media/busy.ogg" type="audio/ogg" />
                    <source src="media/busy.mp3" type="audio/mpeg" />
                </audio>
            </div>

            <a href id="headerUserId" ng-click='goToUserPage(user_id)'>{{ user_id }}</a>
            &nbsp;
            <button ng-click='goToPage("/")'>Home</button>
            <button ng-click='goToPage("settings")'>Settings</button>
            <button ng-click="logout()">Log out</button>
        </div>
    </div>

    <div class="page" ng-hide="unsupportedBrowser" ng-view></div>

    <div class="page" ng-show="unsupportedBrowser">
        <div id="unsupportedBrowser" ng-show="unsupportedBrowser">
            Sorry, your browser is not supported. <br/>
                Reason: {{ unsupportedBrowser.reason }}

            <br/><br/>
            Your browser: <br/>
            {{ unsupportedBrowser.browser }}
        </div>
    </div>

    <div id="footer" ng-hide="location.indexOf('/room') === 0">
        <div id="footerContent">
            &copy; 2014 Matrix.org
        </div>
    </div>
</body>
</html>