Add files via upload
This commit is contained in:
parent
511a37309e
commit
cdf441fd60
2 changed files with 110 additions and 0 deletions
20
blog.html
Normal file
20
blog.html
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
|
||||||
|
<meta name="description" content="Blog powered by Matrix">
|
||||||
|
<title>Blog</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<table class="table is-bordered is-fullwidth">
|
||||||
|
<tr>
|
||||||
|
<th>АААААААААААААААААААААААААААААААА</th>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/3.0.6/purify.min.js" integrity="sha512-H+rglffZ6f5gF7UJgvH4Naa+fGCgjrHKMgoFOGmcPTRwR6oILo5R+gtzNrpDp7iMV3udbymBVjkeZGNz1Em4rQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||||
|
<!-- <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> -->
|
||||||
|
<script src="blog.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
90
blog.js
Normal file
90
blog.js
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
let posts = [];
|
||||||
|
const table = document.querySelector("table");
|
||||||
|
|
||||||
|
function getReactions(posts,p){
|
||||||
|
let reactions = [];
|
||||||
|
const preReactions = posts.filter(f => f.type == "m.reaction" && f.content["m.relates_to"].event_id == p.event_id).map(m => m.content["m.relates_to"]);
|
||||||
|
preReactions.forEach(pr => {
|
||||||
|
let r2 = reactions.find(f => f.key == pr.key);
|
||||||
|
if(!r2) return reactions.push({
|
||||||
|
key: pr.key,
|
||||||
|
count: 1
|
||||||
|
});
|
||||||
|
reactions.find(f => f.key == pr.key).count++;
|
||||||
|
});
|
||||||
|
return '<div class="tags">' + reactions.map(m => `<span class="tag is-rounded">${m.count > 1 ? m.count: ''} ${DOMPurify.sanitize(m.key)}</span>`).join("") + "</div>";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!localStorage.access_token){
|
||||||
|
fetch("https://matrix.org/_matrix/client/v3/register?kind=guest", {method: "post", body: "{}"}).then(r => r.json()).then(json => {
|
||||||
|
if(!json.access_token) console.log(json);
|
||||||
|
localStorage.access_token = json.access_token;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function printPost(post,roomId,noButton){
|
||||||
|
let body = DOMPurify.sanitize(post.content.formatted_body ?? post.content.body);
|
||||||
|
body = body.split("\n").join("<br>");
|
||||||
|
table.innerHTML += `<tr><td>${body}${post.content.msgtype == "m.image" ? `<br><img src="https://matrix.org/_matrix/media/v3/download/${post.content.url.slice(6)}">` : ''}${!noButton ? `<a href="#${roomId}/${post.event_id}">Открыть</a>` : ''}</td></tr>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadPosts(roomId,start){
|
||||||
|
const ignored_events = [];
|
||||||
|
table.innerHTML = `<tr><th>Контент</th></tr>`;
|
||||||
|
if(posts.length < 1 || start != undefined){
|
||||||
|
fetch("https://matrix.org/_matrix/client/v3/rooms/" + encodeURIComponent(roomId) + "/messages?limit=50&access_token=" + localStorage.access_token + (start ? `&from=${start}`: '') + "&dir=b").then(r => r.json()).then(json => {
|
||||||
|
if(json.errcode == "M_FORBIDDEN"){
|
||||||
|
table.innerHTML = `<tr><th>Запрещено</th></tr><tr><td>Гостевой аккаунт не может получить доступ к этой комнате</td></tr>`;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
json.chunk.forEach(c => {
|
||||||
|
if(!["m.room.message","m.reaction"].includes(c.type)) return;
|
||||||
|
if(c.redacted_because) return;
|
||||||
|
if(ignored_events.includes(c.event_id)) return;
|
||||||
|
if(c.type == "m.room.message"){
|
||||||
|
if(c.content.formatted_body != undefined){
|
||||||
|
c.content.body = "";
|
||||||
|
if(c.content["m.new_content"]) c.content["m.new_content"].body = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(c.content["m.new_content"]){
|
||||||
|
if(ignored_events.includes(c.content["m.relates_to"].event_id)) return;
|
||||||
|
ignored_events.push(c.content["m.relates_to"].event_id);
|
||||||
|
c.content = c.content["m.new_content"];
|
||||||
|
}
|
||||||
|
posts.push(c);
|
||||||
|
});
|
||||||
|
posts.forEach((p,i,a) => {
|
||||||
|
printPost(p,roomId);
|
||||||
|
});
|
||||||
|
if(json.end) table.innerHTML += `<button class="button is-fullwidth" onclick="loadPosts('${roomId}','${json.end}')">Ещё</button>`;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
window.onhashchange = () => {
|
||||||
|
let hash = location.hash.slice(1);
|
||||||
|
if(hash.startsWith("!") && !hash.includes("/")){
|
||||||
|
return loadPosts(hash,undefined);
|
||||||
|
}
|
||||||
|
if(hash.includes("/")){
|
||||||
|
hash = hash.split("/");
|
||||||
|
fetch(`https://matrix.org/_matrix/client/v3/rooms/${hash[0]}/context/${hash[1]}?limit=0`, {
|
||||||
|
headers: {
|
||||||
|
Authorization: `Bearer ${localStorage.access_token}`
|
||||||
|
}
|
||||||
|
}).then(r => r.json()).then(json => {
|
||||||
|
if(json.event){
|
||||||
|
const post = json.event;
|
||||||
|
table.innerHTML = `<tr><th>Контент</th></tr>`;
|
||||||
|
printPost(post,hash[0],true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}else{
|
||||||
|
//loadPosts("roomId");
|
||||||
|
table.innerHTML = "<tr><th>Добро пожаловать</th></tr><tr><td>Это блог работающий поверх децентрализованного мессенджера Matrix</td></tr>"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
window.addEventListener("load", () => {
|
||||||
|
window.onhashchange();
|
||||||
|
});
|
Loading…
Reference in a new issue