JLChen
2021-08-02 38f4fb064df09f344fc3237409c76a9fba2a8a9e
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
/*
 * Copyright (c) 2010-2020 Belledonne Communications SARL.
 *
 * This file is part of linphone-iphone
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
 
#import "CallIncomingView.h"
#import "LinphoneManager.h"
#import "FastAddressBook.h"
#import "PhoneMainView.h"
#import "Utils.h"
 
@implementation CallIncomingView
 
#pragma mark - ViewController Functions
 
- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
 
    [NSNotificationCenter.defaultCenter addObserver:self
                                           selector:@selector(callUpdateEvent:)
                                               name:kLinphoneCallUpdate
                                             object:nil];
}
 
- (void)viewWillDisappear:(BOOL)animated {
    [super viewWillDisappear:animated];
    [NSNotificationCenter.defaultCenter removeObserver:self name:kLinphoneCallUpdate object:nil];
    _call = NULL;
}
 
#pragma mark - UICompositeViewDelegate Functions
 
static UICompositeViewDescription *compositeDescription = nil;
 
+ (UICompositeViewDescription *)compositeViewDescription {
    if (compositeDescription == nil) {
        compositeDescription = [[UICompositeViewDescription alloc] init:self.class
                                                              statusBar:StatusBarView.class
                                                                 tabBar:nil
                                                               sideMenu:CallSideMenuView.class
                                                             fullscreen:false
                                                         isLeftFragment:YES
                                                           fragmentWith:nil];
        compositeDescription.darkBackground = true;
    }
    return compositeDescription;
}
 
- (UICompositeViewDescription *)compositeViewDescription {
    return self.class.compositeViewDescription;
}
 
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
    [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
    if (_earlyMedia && [LinphoneManager.instance lpConfigBoolForKey:@"pref_accept_early_media"] && linphone_core_get_calls_nb(LC) < 2) {
        _earlyMediaView.hidden = NO;
        linphone_core_set_native_video_window_id(LC, (__bridge void *)(_earlyMediaView));
    }
    if (_call) {
        [self update];
    }
}
 
#pragma mark - Event Functions
 
- (void)callUpdateEvent:(NSNotification *)notif {
    LinphoneCall *acall = [[notif.userInfo objectForKey:@"call"] pointerValue];
    LinphoneCallState astate = [[notif.userInfo objectForKey:@"state"] intValue];
    [self callUpdate:acall state:astate];
}
 
- (void)callUpdate:(LinphoneCall *)acall state:(LinphoneCallState)astate {
    if (_call == acall && (astate == LinphoneCallEnd || astate == LinphoneCallError)) {
        [_delegate incomingCallAborted:_call];
    } else if ([LinphoneManager.instance lpConfigBoolForKey:@"auto_answer"]) {
        LinphoneCallState state = linphone_call_get_state(_call);
        if (state == LinphoneCallIncomingReceived) {
            LOGI(@"Auto answering call");
            [self onAcceptClick:nil];
        }
    }
}
 
#pragma mark -
 
- (void)update {
    const LinphoneAddress *addr = linphone_call_get_remote_address(_call);
    [ContactDisplay setDisplayNameLabel:_nameLabel forAddress:addr withAddressLabel:_addressLabel];
    char *uri = linphone_address_as_string_uri_only(addr);
    ms_free(uri);
    [_avatarImage setImage:[FastAddressBook imageForAddress:addr] bordered:YES withRoundedRadius:YES];
 
    _tabBar.hidden = linphone_call_params_video_enabled(linphone_call_get_remote_params(_call));
    _tabVideoBar.hidden = !_tabBar.hidden;
}
 
#pragma mark - Property Functions
static void hideSpinner(LinphoneCall *call, void *user_data) {
    CallIncomingView *thiz = (__bridge CallIncomingView *)user_data;
    thiz.earlyMedia = TRUE;
    thiz.earlyMediaView.hidden = NO;
    linphone_core_set_native_video_window_id(LC, (__bridge void *)(thiz.earlyMediaView));
}
 
- (void)setCall:(LinphoneCall *)call {
    _call = call;
    _earlyMedia = FALSE;
    if ([LinphoneManager.instance lpConfigBoolForKey:@"pref_accept_early_media"] && linphone_core_get_calls_nb(LC) < 2) {
        linphone_call_accept_early_media(_call);
        // linphone_call_params_get_used_video_codec return 0 if no video stream enabled
        if (linphone_call_params_get_used_video_codec(linphone_call_get_current_params(_call))) {
            linphone_call_set_next_video_frame_decoded_callback(call, hideSpinner, (__bridge void *)(self));
        }
    } else {
        _earlyMediaView.hidden = YES;
    }
    
    [self update];
    [self callUpdate:_call state:linphone_call_get_state(call)];
}
 
#pragma mark - Action Functions
 
- (IBAction)onAcceptClick:(id)event {
    [_delegate incomingCallAccepted:_call evenWithVideo:YES];
}
 
- (IBAction)onDeclineClick:(id)event {
    [_delegate incomingCallDeclined:_call];
}
 
- (IBAction)onAcceptAudioOnlyClick:(id)sender {
    [_delegate incomingCallAccepted:_call evenWithVideo:NO];
}
 
@end