Skip to content
This repository was archived by the owner on Jun 17, 2022. It is now read-only.

Commit 7a5ebe0

Browse files
committed
Added events!
1 parent db88554 commit 7a5ebe0

33 files changed

+892
-106
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
package me.limeglass.streamelements.api.events;
2+
3+
import java.time.Instant;
4+
5+
import me.limeglass.streamelements.api.objects.Channel;
6+
import me.limeglass.streamelements.internals.events.ElementsEvent;
7+
8+
public class ActivityEvent extends ElementsEvent {
9+
10+
private final String provider, type;
11+
private final Instant instant;
12+
private final Channel channel;
13+
14+
/**
15+
* Called when an Activity happens.
16+
*/
17+
public ActivityEvent(String type, Instant instant, String provider, Channel channel) {
18+
this.provider = provider;
19+
this.channel = channel;
20+
this.instant = instant;
21+
this.type = type;
22+
}
23+
24+
/**
25+
* @return The provider used from the event, E.g: Twitch, Restream etc.
26+
*/
27+
public String getProvider() {
28+
return provider;
29+
}
30+
31+
/**
32+
* @return The Channel where the Activity came from.
33+
*/
34+
public Channel getChannel() {
35+
return channel;
36+
}
37+
38+
/**
39+
* @return The Instant when the Activity was initiated.
40+
*/
41+
public Instant getInstant() {
42+
return instant;
43+
}
44+
45+
/**
46+
* @return The type of the activity, raid, follow, cheer etc.
47+
*/
48+
public String getType() {
49+
return type;
50+
}
51+
52+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package me.limeglass.streamelements.api.events;
2+
3+
import me.limeglass.streamelements.internals.events.ElementsEvent;
4+
5+
public class AuthenticatedEvent extends ElementsEvent {
6+
7+
private final String clientID, message, channelID;
8+
9+
/**
10+
* Called when the authentication has been successful.
11+
*/
12+
public AuthenticatedEvent(String clientID, String message, String channelID) {
13+
this.channelID = channelID;
14+
this.clientID = clientID;
15+
this.message = message;
16+
}
17+
18+
/**
19+
* @return The channel ID that has been connected too.
20+
*/
21+
public String getChannelID() {
22+
return channelID;
23+
}
24+
25+
/**
26+
* @return A randomly generated ID per new instance of authentication. Pretty useless for us.
27+
*/
28+
public String getClientID() {
29+
return clientID;
30+
}
31+
32+
/**
33+
* @return The message from StreamElements when authenticated. It's just "Welcome XD"
34+
*/
35+
public String getMessage() {
36+
return message;
37+
}
38+
39+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
package me.limeglass.streamelements.api.events;
2+
3+
import java.time.Instant;
4+
5+
import me.limeglass.streamelements.api.objects.Channel;
6+
import me.limeglass.streamelements.api.objects.User;
7+
8+
public class CheerEvent extends ActivityEvent {
9+
10+
private final String message;
11+
private final Number amount;
12+
private final User user;
13+
14+
/**
15+
* Called when someone cheers.
16+
*/
17+
public CheerEvent(String type, Instant instant, String provider, Channel channel, Number amount, User user, String message) {
18+
super(type, instant, provider, channel);
19+
this.message = message;
20+
this.amount = amount;
21+
this.user = user;
22+
}
23+
24+
/**
25+
* @return The amount of bits
26+
*/
27+
public Number getAmount() {
28+
return amount;
29+
}
30+
31+
/**
32+
* @return The message involved in the cheer.
33+
*/
34+
public String getMessage() {
35+
return message;
36+
}
37+
38+
/**
39+
* @return The User involved in the cheer event.
40+
*/
41+
public User getuser() {
42+
return user;
43+
}
44+
45+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package me.limeglass.streamelements.api.events;
2+
3+
import me.limeglass.streamelements.internals.events.ElementsEvent;
4+
5+
public class ConnectEvent extends ElementsEvent {
6+
7+
/**
8+
* Called when the socket has made connection to the StreamElements host.
9+
* The authentication happens at this time and will call the AuthenticatedEvent when successful.
10+
*/
11+
public ConnectEvent() {}
12+
13+
}

src/main/java/me/limeglass/streamelements/api/events/ConnectingEvent.java

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
public class ConnectingEvent extends ElementsEvent {
66

7+
/**
8+
* Called when the socket first attempts to connect.
9+
*/
710
public ConnectingEvent() {}
811

912
}

src/main/java/me/limeglass/streamelements/api/events/ConnectionEvent.java

-20
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package me.limeglass.streamelements.api.events;
2+
3+
import me.limeglass.streamelements.internals.events.ElementsEvent;
4+
5+
public class DisconnectEvent extends ElementsEvent {
6+
7+
/**
8+
* Called when the socket has been disconnected.
9+
*/
10+
public DisconnectEvent() {}
11+
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package me.limeglass.streamelements.api.events;
2+
3+
import java.time.Instant;
4+
5+
import me.limeglass.streamelements.api.objects.Channel;
6+
import me.limeglass.streamelements.api.objects.User;
7+
8+
public class FollowEvent extends ActivityEvent {
9+
10+
private final User user;
11+
12+
/**
13+
* Called when someone follows.
14+
*/
15+
public FollowEvent(String type, Instant instant, String provider, Channel channel, User user) {
16+
super(type, instant, provider, channel);
17+
this.user = user;
18+
}
19+
20+
/**
21+
* @return The User that initiated the Follow.
22+
*/
23+
public User getUser() {
24+
return user;
25+
}
26+
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package me.limeglass.streamelements.api.events;
2+
3+
import java.time.Instant;
4+
5+
import me.limeglass.streamelements.api.objects.Channel;
6+
import me.limeglass.streamelements.api.objects.User;
7+
8+
public class HostEvent extends ActivityEvent {
9+
10+
private final Number viewers;
11+
private final User user;
12+
13+
/**
14+
* Called when someone hosts.
15+
*/
16+
public HostEvent(String type, Instant instant, String provider, Channel channel, Number viewers, User user) {
17+
super(type, instant, provider, channel);
18+
this.viewers = viewers;
19+
this.user = user;
20+
}
21+
22+
/**
23+
* @return The amount of viewers involved in the Host.
24+
*/
25+
public Number getViewerCount() {
26+
return viewers;
27+
}
28+
29+
/**
30+
* @return The User that initiated the Host.
31+
*/
32+
public User getUser() {
33+
return user;
34+
}
35+
36+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package me.limeglass.streamelements.api.events;
2+
3+
import me.limeglass.streamelements.internals.events.ElementsEvent;
4+
5+
public class ReconnectEvent extends ElementsEvent {
6+
7+
/**
8+
* Called when socket.io attempts to reconnect.
9+
*/
10+
public ReconnectEvent() {}
11+
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
package me.limeglass.streamelements.api.events;
2+
3+
import java.time.Instant;
4+
5+
import me.limeglass.streamelements.api.objects.Channel;
6+
import me.limeglass.streamelements.api.objects.User;
7+
8+
public class SubscriberEvent extends ActivityEvent {
9+
10+
private final User user, sender;
11+
private final String message;
12+
private final boolean gifted;
13+
private final Number amount;
14+
private final long tier;
15+
16+
/**
17+
* Called when someone subscribes.
18+
*/
19+
public SubscriberEvent(String type, Instant instant, String provider, Channel channel, Number amount, long tier, boolean gifted, User sender, String message, User user) {
20+
super(type, instant, provider, channel);
21+
this.message = message;
22+
this.amount = amount;
23+
this.gifted = gifted;
24+
this.sender = sender;
25+
this.user = user;
26+
this.tier = tier;
27+
}
28+
29+
/**
30+
* @return The message used in the subscription.
31+
*/
32+
public String getMessage() {
33+
return message;
34+
}
35+
36+
/**
37+
* @return If the subscription was gifted.
38+
*/
39+
public boolean isGifted() {
40+
return gifted;
41+
}
42+
43+
/**
44+
* @return The User that received the subscription.
45+
*/
46+
public User getReceiver() {
47+
return user;
48+
}
49+
50+
/**
51+
* @return The amount of subscriptions, if it was a multiple gifted subscription it would be more.
52+
*/
53+
public Number getAmount() {
54+
return amount;
55+
}
56+
57+
/**
58+
* @return The sender that send the possible gifted subscription.
59+
*/
60+
public User getSender() {
61+
return sender;
62+
}
63+
64+
/**
65+
* @return The tier of the subscription.
66+
*/
67+
public long getTier() {
68+
return tier;
69+
}
70+
71+
}

0 commit comments

Comments
 (0)