Skip to content

Commit

Permalink
remove recording (#142)
Browse files Browse the repository at this point in the history
* remove recording

* remove generated files

* generated protobuf

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
frostbyte73 and github-actions[bot] authored Jul 6, 2022
1 parent 31ce725 commit 137b876
Show file tree
Hide file tree
Showing 14 changed files with 321 additions and 3,486 deletions.
149 changes: 65 additions & 84 deletions livekit/livekit_analytics.pb.go

Large diffs are not rendered by default.

747 changes: 219 additions & 528 deletions livekit/livekit_internal.pb.go

Large diffs are not rendered by default.

1,169 changes: 0 additions & 1,169 deletions livekit/livekit_recording.pb.go

This file was deleted.

1,418 changes: 0 additions & 1,418 deletions livekit/livekit_recording.twirp.go

This file was deleted.

4 changes: 2 additions & 2 deletions livekit/livekit_room.twirp.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

85 changes: 34 additions & 51 deletions livekit/livekit_webhook.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions livekit_analytics.proto
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ enum AnalyticsEventType {
TRACK_UNPUBLISHED = 5;
TRACK_SUBSCRIBED = 6;
TRACK_UNSUBSCRIBED = 7;
RECORDING_STARTED = 8;
RECORDING_ENDED = 9;
TRACK_PUBLISHED_UPDATE = 10;
PARTICIPANT_ACTIVE = 11;
EGRESS_STARTED = 12;
Expand All @@ -96,7 +94,6 @@ message AnalyticsEvent {
ParticipantInfo participant = 6;
string track_id = 7;
TrackInfo track = 8;
string recording_id = 9;
string analytics_key = 10;
ClientInfo client_info = 11;
AnalyticsClientMeta client_meta = 12;
Expand Down
21 changes: 0 additions & 21 deletions livekit_internal.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ option ruby_package = "LiveKit::Proto";

// internal protos, not exposed to clients
import "livekit_models.proto";
import "livekit_recording.proto";
import "livekit_rtc.proto";
import "livekit_room.proto";

Expand Down Expand Up @@ -127,25 +126,5 @@ message RemoveParticipant {
string participant_id = 1;
}

message RecordingReservation {
string id = 1;
int64 submitted_at = 2;
}

message RecordingRequest {
string request_id = 1;
oneof request {
StartRecordingRequest start = 2;
AddOutputRequest add_output = 3;
RemoveOutputRequest remove_output = 4;
EndRecordingRequest end = 5;
}
}

message RecordingResponse {
string request_id = 1;
string error = 2;
}

message KeepAlive {
}
112 changes: 0 additions & 112 deletions livekit_recording.proto

This file was deleted.

6 changes: 1 addition & 5 deletions livekit_webhook.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ option ruby_package = "LiveKit::Proto";

import "livekit_models.proto";
import "livekit_egress.proto";
import "livekit_recording.proto";

message WebhookEvent {
// one of room_started, room_finished, participant_joined, participant_left, recording_started, recording_finished,
// one of room_started, room_finished, participant_joined, participant_left,
// track_published, track_unpublished, egress_started, egress_ended
string event = 1;

Expand All @@ -19,9 +18,6 @@ message WebhookEvent {
// set when event is participant_* or track_*
ParticipantInfo participant = 3;

// set when event is recording_*
RecordingInfo recording_info = 5;

// set when event is egress_*
EgressInfo egress_info = 9;

Expand Down
1 change: 0 additions & 1 deletion magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ func Proto() error {
twirpProtoFiles := []string{
"livekit_egress.proto",
"livekit_ingress.proto",
"livekit_recording.proto",
"livekit_room.proto",
}
grpcProtoFiles := []string{
Expand Down
Loading

0 comments on commit 137b876

Please sign in to comment.