12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- async function getAllUserVideos(userID) {
- return axios.get(`/api/userVideos/${userID}`).then(response => {
- return response.data;
- }).catch(error => {
- throw new Error(`getAllUserVideos() error: ${error}`);
- })
- }
- async function getUserInfo(name) {
- return axios.get(`/api/userInfo/${encodeURIComponent(name)}`).then(response => {
- return response.data;
- }).catch(error => {
- throw new Error(`getUserInfo() error: ${error}`);
- })
- }
- async function getInfo(id) {
- return await axios.get(`/api/videoInfo/${id}`, {
- responseType: "json",
- }).then(response => {
- return response.data;
- }).catch(error => {
- throw new Error(`getInfo() error: ${error}`);
- })
- }
- async function getComments(id) {
- return await axios.get(`/api/comments/${id}`).then(response => {
- return response.data;
- }).catch(error => {
- throw new Error(`getComments() error: ${error}`)
- })
- }
- function isLoggedIn() {
- return true ? Cookies.get("user") != null : false;
- }
- function getToken(user) {
- if(user == undefined || user == null) {
- return "peepeecaca unauthorized";
- }
- return (
- user + "*&*&*&*&&&&*&&&&*&****&***&*nexacopicloves15yearoldchineseboys"
- );
- }
- function parseTimestamp(str) {
- let date = str.split("T")[0];
- let timestamp = str.split("T")[1].split("+")[0].split(".")[0];
- return { date: date, timestamp: timestamp };
- }
|