-
Notifications
You must be signed in to change notification settings - Fork 13.6k
feat(media-call): save sip metadata to the media-call #40500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pierre-lehnen-rc
wants to merge
5
commits into
develop
Choose a base branch
from
feat/sip-metadata
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e63b71c
chore: save sip metadata to the media-call
pierre-lehnen-rc edb5e16
test data
pierre-lehnen-rc 38cc19d
simplify structure
pierre-lehnen-rc 35adaef
added an api endpoint to return call information
pierre-lehnen-rc 243bdbc
add changeset
d-gubert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| '@rocket.chat/media-calls': minor | ||
| '@rocket.chat/model-typings': minor | ||
| '@rocket.chat/core-typings': minor | ||
| '@rocket.chat/models': minor | ||
| '@rocket.chat/meteor': minor | ||
| --- | ||
|
|
||
| Added an endpoint to save SIP metadata on the media calls model |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,114 @@ | ||
| import type { Credentials } from '@rocket.chat/api-client'; | ||
| import type { IUser } from '@rocket.chat/core-typings'; | ||
| import { expect } from 'chai'; | ||
| import { after, before, describe, it } from 'mocha'; | ||
| import type { Response } from 'supertest'; | ||
|
|
||
| import { getCredentials, api, request, credentials } from '../../data/api-data'; | ||
| import { password } from '../../data/user'; | ||
| import { createUser, deleteUser, login } from '../../data/users.helper'; | ||
|
|
||
| describe('[Media Calls]', () => { | ||
| let user2: IUser; | ||
| let userCredentials: Credentials; | ||
|
|
||
| before((done) => getCredentials(done)); | ||
|
|
||
| before(async () => { | ||
| user2 = await createUser(); | ||
| userCredentials = await login(user2.username, password); | ||
| }); | ||
|
|
||
| after(() => deleteUser(user2)); | ||
|
|
||
| describe('[/media-calls.info]', () => { | ||
| it('should return valid internal call information', async () => { | ||
| await request | ||
| .get(api('media-calls.info')) | ||
| .set(credentials) | ||
| .query({ | ||
| callId: 'rocketchat.internal.call.test', | ||
| }) | ||
| .expect('Content-Type', 'application/json') | ||
| .expect(200) | ||
| .expect((res: Response) => { | ||
| expect(res.body).to.have.property('success', true); | ||
| expect(res.body).to.have.property('call').that.is.an('object'); | ||
|
|
||
| const { call } = res.body; | ||
| expect(call).to.have.property('_id', 'rocketchat.internal.call.test'); | ||
| expect(call).to.have.property('service', 'webrtc'); | ||
| expect(call).to.have.property('kind', 'direct'); | ||
| expect(call).to.have.property('state', 'hangup'); | ||
| expect(call).to.have.property('ended', true); | ||
| expect(call).to.have.property('hangupReason', 'normal'); | ||
| expect(call).to.have.property('createdBy').that.is.an('object'); | ||
| expect(call.createdBy).to.have.property('type', 'user'); | ||
| expect(call).to.have.property('caller').that.is.an('object'); | ||
| expect(call.caller).to.have.property('type', 'user'); | ||
| expect(call).to.have.property('callee').that.is.an('object'); | ||
| expect(call.callee).to.have.property('type', 'user'); | ||
| expect(call).to.have.property('endedBy').that.is.an('object'); | ||
| expect(call.endedBy).to.have.property('type', 'user'); | ||
| expect(call).to.have.property('uids').that.is.an('array'); | ||
| expect(call.uids).to.have.lengthOf(2); | ||
| }); | ||
| }); | ||
|
|
||
| it('should return valid external call information', async () => { | ||
| await request | ||
| .get(api('media-calls.info')) | ||
| .set(credentials) | ||
| .query({ | ||
| callId: 'rocketchat.external.call.test.outbound', | ||
| }) | ||
| .expect('Content-Type', 'application/json') | ||
| .expect(200) | ||
| .expect((res: Response) => { | ||
| expect(res.body).to.have.property('success', true); | ||
| expect(res.body).to.have.property('call').that.is.an('object'); | ||
|
|
||
| const { call } = res.body; | ||
| expect(call).to.have.property('_id', 'rocketchat.external.call.test.outbound'); | ||
| expect(call).to.have.property('service', 'webrtc'); | ||
| expect(call).to.have.property('kind', 'direct'); | ||
| expect(call).to.have.property('state', 'hangup'); | ||
| expect(call).to.have.property('ended', true); | ||
| expect(call).to.have.property('hangupReason', 'normal'); | ||
| expect(call).to.have.property('createdBy').that.is.an('object'); | ||
| expect(call).to.have.property('sipCallId', 'sipCallId3'); | ||
| expect(call.createdBy).to.have.property('type', 'user'); | ||
| expect(call).to.have.property('caller').that.is.an('object'); | ||
| expect(call.caller).to.have.property('type', 'user'); | ||
| expect(call).to.have.property('callee').that.is.an('object'); | ||
| expect(call.callee).to.have.property('type', 'sip'); | ||
| expect(call).to.have.property('endedBy').that.is.an('object'); | ||
| expect(call.endedBy).to.have.property('type', 'user'); | ||
| expect(call).to.have.property('uids').that.is.an('array'); | ||
| expect(call.uids).to.have.lengthOf(1); | ||
| }); | ||
| }); | ||
|
|
||
| it('should not return invalid calls', async () => { | ||
| await request | ||
| .get(api('media-calls.info')) | ||
| .set(credentials) | ||
| .query({ | ||
| callId: 'invalid.call', | ||
| }) | ||
| .expect('Content-Type', 'application/json') | ||
| .expect(404); | ||
| }); | ||
|
|
||
| it('should not return calls from other users', async () => { | ||
| await request | ||
| .get(api('media-calls.info')) | ||
| .set(userCredentials) | ||
| .query({ | ||
| callId: 'rocketchat.internal.call.test', | ||
| }) | ||
| .expect('Content-Type', 'application/json') | ||
| .expect(404); | ||
| }); | ||
| }); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.