server

package
v1.0.74 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 23, 2024 License: Unlicense Imports: 29 Imported by: 0

Documentation

Index

Constants

View Source
const ACTIVITY_PROFILE_PICKER = "com.amazon.ftv.profilepicker/com.amazon.ftv.profilepicker.ui.PickerActivity"
View Source
const BROWSER_ACTIVITY = "com.amazon.cloud9/com.amazon.slate.fire_tv.FireTvSlateActivity"

const FIREFOX_FOCUS_ACTIVITY = "org.mozilla.focus/org.mozilla.focus.activity.MainActivity" const FIREFOX_FOCUS_APP_NAME = "org.mozilla.focus" const FIREFOX_ACTIVITY = "org.mozilla.firefox/org.mozilla.fenix.customtabs.ExternalAppBrowserActivity" const FIREFOX_APP_NAME = "org.mozilla.firefox"

View Source
const BROWSER_APP_NAME = "com.amazon.cloud9"
View Source
const DISNEY_ACTIVITY = "com.disney.disneyplus/com.bamtechmedia.dominguez.main.MainActivity"
View Source
const DISNEY_APP_NAME = "com.disney.disneyplus"
View Source
const DISNEY_PLAYING_ACTIVITY = "com.disney.disneyplus/com.bamtechmedia.dominguez.player.ui.experiences.legacy.v1.TvPlaybackActivity"
View Source
const NETFLIX_ACTIVITY = "com.netflix.ninja/com.netflix.ninja.MainActivity"
View Source
const NETFLIX_APP_NAME = "com.netflix.ninja"
View Source
const R_KEY_STATE_TWITCH_FOLLOWING_LIVE = "STATE.TWITCH.FOLLOWING.LIVE"
View Source
const SPOTIFY_ACTIVITY = "com.spotify.tv.android/com.spotify.tv.android.SpotifyTVActivity"
View Source
const SPOTIFY_APP_NAME = "com.spotify.tv.android"
View Source
const TWITCH_ACTIVITY = "tv.twitch.android.viewer/tv.twitch.starshot64.app.StarshotActivity"
View Source
const TWITCH_APP_NAME = "tv.twitch.android.viewer"
View Source
const VLC_ACTIVITY = "org.videolan.vlc/org.videolan.television.ui.MainTvActivity"
View Source
const VLC_APP_NAME = "org.videolan.vlc"
View Source
const YOUTUBE_ACTIVITY = "com.amazon.firetv.youtube/dev.cobalt.app.MainActivity"
View Source
const YOUTUBE_APP_NAME = "com.amazon.firetv.youtube"

Variables

View Source
var APP_NAMES = []string{"twitch", "disney", "youtube", "spotify", "vlc"}
View Source
var RESET_COUNTER = 0

Functions

func HandleLogin

func HandleLogin(context *fiber.Ctx) error

POST http://localhost:5950/admin/login

func HandleLogout

func HandleLogout(context *fiber.Ctx) error

func RenderHomePage

func RenderHomePage(context *fiber.Ctx) error

func RenderLoginPage

func RenderLoginPage(context *fiber.Ctx) error

func SanitizeUsername

func SanitizeUsername(first_name string, last_name string) (username string)

weak attempt at sanitizing form input to build a "username"

func ServeLoginPage

func ServeLoginPage(context *fiber.Ctx) error

Types

type GenericInfo

type GenericInfo struct {
	ADBStatus           interface{} `json:"adb_status"`
	PlayerName          string      `json:"player_name"`
	Activity            string      `json:"activity"`
	Package             string      `json:"package"`
	PlayerState         string      `json:"player_state"`
	CachedPlayerName    string      `json:"cached_player_name"`
	CachedPlayerCommand string      `json:"cached_player_name"`
}

type Server

type Server struct {
	FiberApp *fiber.App          `yaml:"fiber_app"`
	Config   types.ConfigFile    `yaml:"config"`
	DB       *redis.Client       `yaml:"-"`
	ADB      adb_wrapper.Wrapper `json:"-"`
	TV       *tv.TV              `json:"-"`
	Status   Status              `json:"-"`
}
var GlobalServer *Server

func New

func New(db *redis.Client, config types.ConfigFile) (server Server)

func (*Server) ADBConnect

func (s *Server) ADBConnect() (connection adb_wrapper.Wrapper)

func (*Server) ADBNext

func (s *Server) ADBNext(c *fiber.Ctx) error

func (*Server) ADBPause

func (s *Server) ADBPause(c *fiber.Ctx) error

func (*Server) ADBPlay

func (s *Server) ADBPlay(c *fiber.Ctx) error

func (*Server) ADBPrevious

func (s *Server) ADBPrevious(c *fiber.Ctx) error

func (*Server) ADBStop

func (s *Server) ADBStop(c *fiber.Ctx) error

func (*Server) BrowserAudioPlayerSetPosition

func (s *Server) BrowserAudioPlayerSetPosition(c *fiber.Ctx) error

func (*Server) BrowserOpenAudioPlayer

func (s *Server) BrowserOpenAudioPlayer(c *fiber.Ctx) error

func (*Server) BrowserOpenURL

func (s *Server) BrowserOpenURL(c *fiber.Ctx) error

func (*Server) BrowserOpenVideoPlayer

func (s *Server) BrowserOpenVideoPlayer(c *fiber.Ctx) error

func (*Server) BrowserReopenApp

func (s *Server) BrowserReopenApp()

func (*Server) BrowserWebSocketHandler

func (s *Server) BrowserWebSocketHandler(c *websocket.Conn)

https://docs.gofiber.io/contrib/websocket/

func (*Server) DisneyContinuousOpen

func (s *Server) DisneyContinuousOpen()

func (*Server) DisneyMovie added in v1.0.8

func (s *Server) DisneyMovie(c *fiber.Ctx) error

func (*Server) DisneyMovieNext

func (s *Server) DisneyMovieNext(c *fiber.Ctx) error

func (*Server) DisneyMoviePrevious

func (s *Server) DisneyMoviePrevious(c *fiber.Ctx) error

func (*Server) DisneyReopenApp

func (s *Server) DisneyReopenApp()

func (*Server) Get

func (s *Server) Get(key string) (result string)

func (*Server) GetJSON

func (s *Server) GetJSON(key string, target interface{})

var test = &types.ConfigFile{} s.GetJSON( "config" , test ) fmt.Println( test.BoltDBEncryptionKey ) https://redis.io/commands/json.get/

func (*Server) GetStatus

func (s *Server) GetStatus() (result Status)

func (*Server) GetStatusUrl

func (s *Server) GetStatusUrl(c *fiber.Ctx) error

func (*Server) GetTwitchLiveRefresh

func (s *Server) GetTwitchLiveRefresh(c *fiber.Ctx) error

func (*Server) GetTwitchLiveUpdate

func (s *Server) GetTwitchLiveUpdate(c *fiber.Ctx) error

func (*Server) GetYouTubeLiveUpdate

func (s *Server) GetYouTubeLiveUpdate(c *fiber.Ctx) error

func (*Server) Log

func (s *Server) Log(message string)

func (*Server) LogRequest

func (s *Server) LogRequest(context *fiber.Ctx) error

func (*Server) NetflixContinuousOpen

func (s *Server) NetflixContinuousOpen()

func (*Server) NetflixNext added in v1.0.23

func (s *Server) NetflixNext(c *fiber.Ctx) error

func (*Server) NetflixPrevious added in v1.0.23

func (s *Server) NetflixPrevious(c *fiber.Ctx) error

func (*Server) NetflixReopenApp

func (s *Server) NetflixReopenApp()

func (*Server) Next

func (s *Server) Next(c *fiber.Ctx) error

func (*Server) Pause

func (s *Server) Pause(c *fiber.Ctx) error

func (*Server) Play

func (s *Server) Play(c *fiber.Ctx) error

func (*Server) Previous

func (s *Server) Previous(c *fiber.Ctx) error

func (*Server) Printf

func (s *Server) Printf(format_string string, args ...interface{})

func (*Server) ReStreamRestart

func (s *Server) ReStreamRestart(c *fiber.Ctx) error

func (*Server) ReStreamStop

func (s *Server) ReStreamStop(c *fiber.Ctx) error

func (*Server) ReStreamURL

func (s *Server) ReStreamURL(c *fiber.Ctx) error

func (*Server) Resume

func (s *Server) Resume(c *fiber.Ctx) error

func (*Server) SelectFireCubeProfile

func (s *Server) SelectFireCubeProfile()

func (*Server) Set

func (s *Server) Set(key string, value interface{}) (result string)

func (*Server) SetupAdminRoutes

func (s *Server) SetupAdminRoutes()

func (*Server) SetupPublicRoutes

func (s *Server) SetupPublicRoutes()

func (*Server) SetupRoutes

func (s *Server) SetupRoutes()

func (*Server) SpotifyContinuousOpen

func (s *Server) SpotifyContinuousOpen()

func (*Server) SpotifyGetActiveButtonIndex

func (s *Server) SpotifyGetActiveButtonIndex() (result int)

func (*Server) SpotifyIsShuffleOn

func (s *Server) SpotifyIsShuffleOn() (result bool)

func (*Server) SpotifyNextPlaylist

func (s *Server) SpotifyNextPlaylist()

func (*Server) SpotifyNextPlaylistWithShuffle

func (s *Server) SpotifyNextPlaylistWithShuffle(c *fiber.Ctx) error

func (*Server) SpotifyNextSong

func (s *Server) SpotifyNextSong(song_id string)

func (*Server) SpotifyPlaylist

func (s *Server) SpotifyPlaylist(c *fiber.Ctx) error

func (*Server) SpotifyPlaylistWithShuffle

func (s *Server) SpotifyPlaylistWithShuffle(c *fiber.Ctx) error

func (*Server) SpotifyPressPreviousButton

func (s *Server) SpotifyPressPreviousButton()

func (*Server) SpotifyPreviousPlaylist

func (s *Server) SpotifyPreviousPlaylist(playlist_id string)

func (*Server) SpotifyPreviousSong

func (s *Server) SpotifyPreviousSong(song_id string)

func (*Server) SpotifyReopenApp

func (s *Server) SpotifyReopenApp()

func (*Server) SpotifySetShuffle

func (s *Server) SpotifySetShuffle(c *fiber.Ctx) error

func (*Server) SpotifyShuffleOff

func (s *Server) SpotifyShuffleOff() (was_on bool)

func (*Server) SpotifyShuffleOn

func (s *Server) SpotifyShuffleOn() (was_on bool)

func (*Server) SpotifySong

func (s *Server) SpotifySong(c *fiber.Ctx) error

5Muvh0ooAJkSgBylFyI3su

func (*Server) SpotifyUpdate

func (s *Server) SpotifyUpdate()

func (*Server) Start

func (s *Server) Start()

func (*Server) Stop

func (s *Server) Stop(c *fiber.Ctx) error

func (*Server) StoreLibrary

func (s *Server) StoreLibrary()

func (*Server) StreamDeckDisney

func (s *Server) StreamDeckDisney(c *fiber.Ctx) error

func (*Server) StreamDeckEscapeRope

func (s *Server) StreamDeckEscapeRope(c *fiber.Ctx) error

func (*Server) StreamDeckHeart

func (s *Server) StreamDeckHeart(c *fiber.Ctx) error

func (*Server) StreamDeckSpotify

func (s *Server) StreamDeckSpotify(c *fiber.Ctx) error

func (*Server) StreamDeckTwitch

func (s *Server) StreamDeckTwitch(c *fiber.Ctx) error

func (*Server) StreamDeckYouTube

func (s *Server) StreamDeckYouTube(c *fiber.Ctx) error

func (*Server) TVGetInput

func (s *Server) TVGetInput(c *fiber.Ctx) error

func (*Server) TVGetVolume

func (s *Server) TVGetVolume(c *fiber.Ctx) error

func (*Server) TVMuteOff

func (s *Server) TVMuteOff(c *fiber.Ctx) error

func (*Server) TVMuteOn

func (s *Server) TVMuteOn(c *fiber.Ctx) error

func (*Server) TVPowerOff

func (s *Server) TVPowerOff(c *fiber.Ctx) error

func (*Server) TVPowerOn

func (s *Server) TVPowerOn(c *fiber.Ctx) error

func (*Server) TVPowerStatus

func (s *Server) TVPowerStatus(c *fiber.Ctx) error

func (*Server) TVPrepare

func (s *Server) TVPrepare(c *fiber.Ctx) error

func (*Server) TVSetInput

func (s *Server) TVSetInput(c *fiber.Ctx) error

func (*Server) TVSetVolume

func (s *Server) TVSetVolume(c *fiber.Ctx) error

func (*Server) TwitchContinuousOpen

func (s *Server) TwitchContinuousOpen()

func (*Server) TwitchFilterCurratedFollers

func (s *Server) TwitchFilterCurratedFollers(input_list []string) (result []string)

func (*Server) TwitchGetLiveFollowers

func (s *Server) TwitchGetLiveFollowers() (result []string)

func (*Server) TwitchLiveNext

func (s *Server) TwitchLiveNext(c *fiber.Ctx) error

func (*Server) TwitchLivePrevious

func (s *Server) TwitchLivePrevious(c *fiber.Ctx) error

func (*Server) TwitchLiveRefresh

func (s *Server) TwitchLiveRefresh() (result []string)

func (*Server) TwitchLiveSetQualityMax

func (s *Server) TwitchLiveSetQualityMax(c *fiber.Ctx) error

literally trolling , we have to get pixel values to know where we are being bullied in the quality selection menu

func (*Server) TwitchLiveUpdate

func (s *Server) TwitchLiveUpdate() (result []string)

Update DB With List of Currated Live Followers

func (*Server) TwitchLiveUser added in v1.0.36

func (s *Server) TwitchLiveUser(c *fiber.Ctx) error

func (*Server) TwitchRefreshAuthToken

func (s *Server) TwitchRefreshAuthToken() (access_token string)

func (*Server) TwitchReopenApp

func (s *Server) TwitchReopenApp()

func (*Server) VLCContinuousOpen

func (s *Server) VLCContinuousOpen()

func (*Server) VLCNext

func (s *Server) VLCNext(c *fiber.Ctx) error

func (*Server) VLCPlayURL

func (s *Server) VLCPlayURL(c *fiber.Ctx) error

func (*Server) VLCPlaylistAddURL

func (s *Server) VLCPlaylistAddURL(c *fiber.Ctx) error

Custom Playlist Stuff

func (*Server) VLCPrevious

func (s *Server) VLCPrevious(c *fiber.Ctx) error

func (*Server) VLCReopenApp

func (s *Server) VLCReopenApp()

func (*Server) YouTubeContinuousOpen

func (s *Server) YouTubeContinuousOpen()

func (*Server) YouTubeGetChannelId

func (s *Server) YouTubeGetChannelId(channel_name string) (result string)

or just goto dev console on youtube channel's /stream page and run `ytInitialData.metadata.channelMetadataRenderer.externalId`

func (*Server) YouTubeGetChannelsLiveVideos

func (s *Server) YouTubeGetChannelsLiveVideos(channel_id string) (result []YoutubeVideo)

https://developers.google.com/youtube/v3/docs/search/list

func (*Server) YouTubeGetPlaylistVideos

func (s *Server) YouTubeGetPlaylistVideos(playlist_id string) (result []YoutubeVideo)

func (*Server) YouTubeIsVideoIdAvailable

func (s *Server) YouTubeIsVideoIdAvailable(video_id string) (result bool)

func (*Server) YouTubeLiveNext

func (s *Server) YouTubeLiveNext(c *fiber.Ctx) error

func (*Server) YouTubeLivePrevious

func (s *Server) YouTubeLivePrevious(c *fiber.Ctx) error

func (*Server) YouTubeLiveUpdate

func (s *Server) YouTubeLiveUpdate() (result []string)

Update DB With List of Currated Live Followers fucking idiots with this god damn quota. bro

func (*Server) YouTubePlaylistAddPlaylist

func (s *Server) YouTubePlaylistAddPlaylist(c *fiber.Ctx) error

func (*Server) YouTubePlaylistAddVideo

func (s *Server) YouTubePlaylistAddVideo(c *fiber.Ctx) error

func (*Server) YouTubePlaylistDeleteVideo

func (s *Server) YouTubePlaylistDeleteVideo(c *fiber.Ctx) error

func (*Server) YouTubePlaylistGet

func (s *Server) YouTubePlaylistGet(c *fiber.Ctx) error

func (*Server) YouTubePlaylistGetIndex

func (s *Server) YouTubePlaylistGetIndex(c *fiber.Ctx) error

func (*Server) YouTubePlaylistGetNextAvailableVideoID

func (s *Server) YouTubePlaylistGetNextAvailableVideoID(playlist_key string) (video_id string)

func (*Server) YouTubePlaylistGetPreviousAvailableVideoID

func (s *Server) YouTubePlaylistGetPreviousAvailableVideoID(playlist_key string) (video_id string)

func (*Server) YouTubePlaylistNext

func (s *Server) YouTubePlaylistNext(c *fiber.Ctx) error

This is not a youtube playlist , this is our own "playlist" android youtube app still doesn't have intents for playlist loading

func (*Server) YouTubePlaylistPrevious

func (s *Server) YouTubePlaylistPrevious(c *fiber.Ctx) error

func (*Server) YouTubePlaylistSetIndex

func (s *Server) YouTubePlaylistSetIndex(c *fiber.Ctx) error

func (*Server) YouTubeReopenApp

func (s *Server) YouTubeReopenApp()

func (*Server) YouTubeVideo

func (s *Server) YouTubeVideo(c *fiber.Ctx) error

type Status

type Status struct {
	StartTime                        string        `json:"start_time"`
	StartTimeOBJ                     time.Time     `json:"-"`
	PlayerName                       string        `json:"player_name"`
	PlayerCommand                    string        `json:"player_command"`
	NowPlayingID                     string        `json:"now_playing_id"`
	NowPlayingText                   string        `json:"now_playing_text"`
	PreviousPlayerName               string        `json:"previous_player_name"`
	PreviousPlayerCommand            string        `json:"previous_player_command"`
	PreviousStartTime                string        `json:"previous_start_time"`
	PreviousStartTimeOBJ             time.Time     `json:"-"`
	PreviousStartTimeDuration        time.Duration `json:"-"`
	PreviousStartTimeDurationSeconds float64       `json:"previous_start_time_duration_seconds"`
	// ADBTopWindow string `json:"adb_top_window"`
	// ADBVolume int `json:"adb_volume"`
	ADB adb_wrapper.Status `json:"adb"`
	TV  tv.Status          `json:"tv"`
}

type YouTubeResponseItem

type YouTubeResponseItem struct {
	Id struct {
		VideoId string `json:"videoId"`
	} `json:"id"`
	Snippet struct {
		Title string `json:"title"`
	} `json:"snippet"`
}

type YoutubePlaylistResponse

type YoutubePlaylistResponse struct {
	NextPageToken string `json:"nextPageToken"`
	Items         []struct {
		Snippet struct {
			ResourceId struct {
				VideoId string `json:"videoId"`
			} `json:"resourceId"`
			Title string `json:"title"`
		} `json:"snippet"`
	} `json:"items"`
}

type YoutubeResponse

type YoutubeResponse struct {
	Items []YouTubeResponseItem `json:"items"`
}

type YoutubeVideo

type YoutubeVideo struct {
	Id   string
	Name string
}

type YoutubeVideoInfo

type YoutubeVideoInfo struct {
	Items []struct {
		ID string `json:"id"`
	} `json:"items"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL