Ir para conteúdo

TemmieWebhook - Uma simples, direto ao ponto, API em Java para usar os Webhooks do Discord


MrPowerGamerBR

Posts Recomendados

TemmieWebhook

0p5v9co.gif
TemmieWebhook - Uma simples, direto ao ponto, API em Java para usar os Webhooks do Discord
Tão simples, que nem precisa de um tutorial gigante sobre ela.

Mensagens
Código:

TemmieWebhook temmie = new TemmieWebhook("Your Webhook URL here (Get it by going to your server configurations -> Webhook");
// Username, Content, Avatar URL
DiscordMessage dm = new DiscordMessage("Temmie", "hOI, im TEMMIE!", "https://media.tenor.co/images/d205ef37ba5aad7b84fc21f6ffb36c6b/raw");
temmie.sendMessage(dm);

Resultado:
83eUEi3.png
Embeds
Porque todos os programadores legais usam embeds no Discord, então porque nós não usamos também?

Código:


TemmieWebhook temmie = new TemmieWebhook("Your Webhook URL here (Get it by going to your server configurations -> Webhook");
DiscordEmbed de = new DiscordEmbed("Temmie", "Temmie (/ˈtɛ.miː/) is a species of monster in the Underground. They appear as a unique enemy in Waterfall, residents of Temmie Village, and the vendor of Tem Shop. ");
ThumbnailEmbed te = new ThumbnailEmbed();
te.setUrl("http://vignette3.wikia.nocookie.net/undertale/images/9/9c/Temmie.gif/revision/latest?cb=20151206115948");
te.setHeight(96);
te.setWidth(96);
de.setThumbnail(te);
DiscordMessage dm = new DiscordMessage("Temmie", "", "https://img04.deviantart.net/360e/i/2015/300/9/d/temmie_by_ilovegir64-d9elpal.png");
dm.getEmbeds().add(de);
temmie.sendMessage(dm);

Saída:
g5qsrKh.png

Builders
Você prefere usar builders? Sem problemas

Messages Builder
Código:


TemmieWebhook temmie = new TemmieWebhook("Your Webhook URL here (Get it by going to your server configurations -> Webhook");
DiscordMessage dm = DiscordMessage.builder()
  .username("Temmie") // We are creating a message with the username "Temmie"...
  .content("RATED TEM OUTTA TEM.") // with this content...
  .avatarUrl("http://img14.deviantart.net/de17/i/2015/364/0/4/undertale_temmie_by_silvishinystar-d9lpf55.png") // with this avatar...
  .build(); // and now we build the message!

temmie.sendMessage(dm);

Saída:
gpzksDu.png

Embed Builder
Código:


TemmieWebhook temmie = new TemmieWebhook("Your Webhook URL here (Get it by going to your server configurations -> Webhook");
DiscordEmbed de = DiscordEmbed.builder()
  .title("RATED TEM OUTTA TEM.") // We are creating a embed with this title...
  .description("fhsdhjfdsfjsddshjfsd ") // with this description...
  .url("https://github.com/MrPowerGamerBR/TemmieWebhook") // that, when clicked, goes to the TemmieWebhook repo...
  .footer(FooterEmbed.builder() // with a fancy footer...
  .text("TemmieWebhook!") // this footer will have the text "TemmieWebhook!"...
  .icon_url("http://vignette2.wikia.nocookie.net/undertale-brasil/images/4/4f/Temmie.jpg/revision/latest?cb=20160221005012&path-prefix=pt-br") // with this icon on the footer
  .build()) // and now we build the footer...
  .thumbnail(ThumbnailEmbed.builder() // with a fancy thumbnail...
  .url("http://i.imgur.com/7kznsnS.png") // with this thumbnail...
  .height(128) // not too big because we don't want to flood the user chats with a huge image, right?
  .build()) // and now we build the thumbnail...
  .fields(Arrays.asList( // with fields...
  FieldEmbed.builder()
  .name("hOI!!!!!! i'm tEMMIE!!")
  .value("awwAwa cute!! (pets u)")
  .build(),
  FieldEmbed.builder()
  .name("OMG!! humans TOO CUTE (dies)")
  .value("NO!!!!! muscles r... NOT CUTE | NO!!!!!")
  .build(),
  FieldEmbed.builder()
  .name("NO!!! so hungr... (dies) ")
  .value("FOOB!!! ")
  .build()
  ))
  .build(); // and finally, we build the embed

DiscordMessage dm = DiscordMessage.builder()
  .username("Temmie") // We are creating a message with the username "Temmie"...
  .content("") // with no content because we are going to use the embed...
  .avatarUrl("http://img06.deviantart.net/a35d/i/2016/056/c/3/temmie___undertale_by_tartifondue-d9t3h1h.png") // with this avatar...
  .embeds(Arrays.asList(de)) // with the our embed...
  .build(); // and now we build the message!

temmie.sendMessage(dm);

Saída:
ttSOjsU.png
Simples assim, divirta-se!

Maven
Você pode usar o TemmieWebhook com Maven usando Jitpack. (Desculpe, não tenho uma repo no Maven... :( )


<repositories>
  <repository>
  <id>jitpack.io</id>
  <url>https://jitpack.io</url>
  </repository>
</repositories>

<dependency>
  <groupId>com.github.MrPowerGamerBR</groupId>
  <artifactId>TemmieWebhook</artifactId>
  <version>-SNAPSHOT</version>
</dependency>

Dependências
Gson
HttpRequest by @kevinsawicki
lombok

Porque Temmie?
Porque não Temmie?

GitHub Repo:
https://github.com/MrPowerGamerBR/TemmieWebhook

Example Project:
RelayItToDiscord - Envie seu chat do servidor para o Discord! https://www.spigotmc.org/resources/relayittodiscord.34615/

Link para o comentário
Compartilhar em outros sites

Manerão, tu ta usando o RelayItToDiscord no teu server? qual é o link do discord, quero ver.

 

@Edit

nvm, já achei, ficou maneirão.

Atualmente não uso o RelayItToDiscord no meu servidor, mas uso uma versão que eu fiz antes de ter lançado o RelayItToDiscord. (A diferença que o meu recebe as mensagens via socket, já que o plugin de chat envia para o BungeeCord e o BungeeCord faz relay para qualquer lugar que deseja receber as mensagens, ai o Whistler (meu bot para o Discord) recebe e envia a mensagem via TemmieWebhook)

 

É que era mais simples (já que era mais um teste) do que criar um plugin para testar.

Link para o comentário
Compartilhar em outros sites

Participe da Conversa

Você pode postar agora e se cadastrar mais tarde. Se você tiver uma conta, a class='ipsType_brandedLink' href='https://gamersboard.com.br/login/' data-ipsDialog data-ipsDialog-size='medium' data-ipsDialog-title='Sign In Now'>acesse agora para postar com sua conta.
Observação: sua postagem exigirá aprovação do moderador antes de ficar visível.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emoticons são permitidos.

×   Seu link foi incorporado automaticamente.   Exibir como um link em vez disso

×   Seu conteúdo anterior foi restaurado.   Limpar Editor

×   Você não pode colar imagens diretamente. Carregar ou inserir imagens do URL.

Processando...
×
×
  • Criar Novo...