Add files via upload

This commit is contained in:
Dangrainage 2023-11-26 21:43:33 +01:00 committed by GitHub
parent 3d768d0316
commit 2953f0abf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

119
Redditlikekerfuffle..html Normal file
View file

@ -0,0 +1,119 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bitt</title>
<h1>Use this as you would Twitter, oh, sorry X</h1>
</head>
<body>
<div>
<h2>Post a Bitt</h2>
<textarea id="tweetInput" rows="4" cols="50"></textarea>
<br>
<button onclick="postTweet()">Post</button>
</div>
<div>
<h2>Bitters</h2>
<ul id="tweetList"></ul>
</div>
<script>
const username = 'Bitteralt';
const repo = 'Bitters';
const token = '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';
// GitHub API endpoint
const githubApiUrl = `https://api.github.com/repos/${username}/${repo}/contents/`;
// Fetch tweets from the GitHub repository
function fetchTweets() {
fetch(githubApiUrl)
.then(response => response.json())
.then(files => {
const tweetFiles = files
.filter(file => file.name.endsWith('.json'))
.sort((a, b) => b.name.localeCompare(a.name)); // Sort by filename in descending order
// Display tweets
displayTweets(tweetFiles);
})
.catch(error => console.error('Error fetching tweets:', error));
}
// Display tweets on the page
function displayTweets(tweetFiles) {
const tweetList = document.getElementById('tweetList');
tweetList.innerHTML = '';
tweetFiles.forEach(file => {
const listItem = document.createElement('li');
// Fetch and display tweet content
fetch(`${githubApiUrl}${file.name}`)
.then(response => response.json())
.then(tweet => {
const tweetText = JSON.parse(atob(tweet.content)).text;
// Create a paragraph for each tweet
const paragraph = document.createElement('p');
paragraph.textContent = tweetText;
listItem.appendChild(paragraph);
})
.catch(error => console.error('Error fetching tweet content:', error));
// Append the tweet to the list
tweetList.appendChild(listItem);
});
}
// Post a new tweet
function postTweet() {
const tweetInput = document.getElementById('tweetInput');
const tweetText = tweetInput.value;
if (tweetText.trim() !== '') {
const timestamp = Date.now();
const fileName = `tweet_${timestamp}.json`;
const fileContent = JSON.stringify({ text: tweetText }, null, 2);
// Create a new tweet file
createFile(fileName, fileContent);
// Clear the input field
tweetInput.value = '';
}
}
// Create a new file in the GitHub repository
function createFile(fileName, fileContent) {
const apiUrl = `${githubApiUrl}${fileName}`;
const data = {
message: `Add tweet: ${fileName}`,
content: btoa(fileContent),
branch: 'main'
};
fetch(apiUrl, {
method: 'PUT',
headers: {
'Authorization': `token ${token}`,
'Content-Type': 'application/json',
},
body: JSON.stringify(data),
})
.then(response => response.json())
.then(() => {
// Fetch and display the updated tweets
fetchTweets();
})
.catch(error => console.error('Error creating file:', error));
}
// Fetch and display tweets when the page loads
fetchTweets();
</script>
</body>
</html>