s
This commit is contained in:
parent
0e20c69b78
commit
f30e6e090b
266
books/test copy.html
Normal file
266
books/test copy.html
Normal file
@ -0,0 +1,266 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>File Manager Overview</title>
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.breadcrumb {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
.breadcrumb a {
|
||||||
|
color: #007bff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.breadcrumb a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.file-list {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.file-item {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 5px 10px;
|
||||||
|
border-bottom: 1px solid #e0e0e0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.file-item:hover {
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
.file-name {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
.folder-item {
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: #e6f2ff;
|
||||||
|
}
|
||||||
|
.folder-item:hover {
|
||||||
|
background-color: #d9e9ff;
|
||||||
|
}
|
||||||
|
.context-menu, .modal {
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
.context-menu {
|
||||||
|
background-color: #ffffff;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
|
||||||
|
padding: 5px 0;
|
||||||
|
}
|
||||||
|
.context-menu button {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
padding: 5px 20px;
|
||||||
|
text-align: left;
|
||||||
|
border: none;
|
||||||
|
background: none;
|
||||||
|
cursor: pointer;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.context-menu button:hover {
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
}
|
||||||
|
.modal {
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: rgba(0,0,0,0.4);
|
||||||
|
}
|
||||||
|
.modal-content {
|
||||||
|
background-color: #fefefe;
|
||||||
|
margin: 15% auto;
|
||||||
|
padding: 20px;
|
||||||
|
border: 1px solid #888;
|
||||||
|
width: 80%;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
.close {
|
||||||
|
color: #aaa;
|
||||||
|
float: right;
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: bold;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.close:hover,
|
||||||
|
.close:focus {
|
||||||
|
color: black;
|
||||||
|
text-decoration: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
#fileSystem {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
padding: 10px;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main class="container">
|
||||||
|
<div class="breadcrumb">
|
||||||
|
<a href="#">Home</a> / <a href="#">Documents</a> / Current Folder
|
||||||
|
</div>
|
||||||
|
<h1>File Manager</h1>
|
||||||
|
<ul class="file-list">
|
||||||
|
<li class="file-item folder-item" data-type="folder" data-items="5" data-modified="2023-05-12">
|
||||||
|
<span class="file-name">Documents</span>
|
||||||
|
<span class="file-size">5 items</span>
|
||||||
|
</li>
|
||||||
|
<li class="file-item" data-type="file" data-size="10 KB" data-modified="2023-05-15">
|
||||||
|
<span class="file-name">document.txt</span>
|
||||||
|
<span class="file-size">10 KB</span>
|
||||||
|
</li>
|
||||||
|
<li class="file-item" data-type="file" data-size="2 MB" data-modified="2023-05-14">
|
||||||
|
<span class="file-name">image.jpg</span>
|
||||||
|
<span class="file-size">2 MB</span>
|
||||||
|
</li>
|
||||||
|
<li class="file-item" data-type="file" data-size="500 KB" data-modified="2023-05-13">
|
||||||
|
<span class="file-name">spreadsheet.xlsx</span>
|
||||||
|
<span class="file-size">500 KB</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<div id="contextMenu" class="context-menu">
|
||||||
|
<button id="moveBtn">Move</button>
|
||||||
|
<button id="copyBtn">Copy</button>
|
||||||
|
<button id="deleteBtn">Delete</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="infoModal" class="modal">
|
||||||
|
<div class="modal-content">
|
||||||
|
<span class="close">×</span>
|
||||||
|
<h2 id="modalTitle"></h2>
|
||||||
|
<p id="modalInfo"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="copyModal" class="modal">
|
||||||
|
<div class="modal-content">
|
||||||
|
<span class="close">×</span>
|
||||||
|
<h2>Copy to:</h2>
|
||||||
|
<div id="fileSystem">
|
||||||
|
<ul>
|
||||||
|
<li>Home
|
||||||
|
<ul>
|
||||||
|
<li>Documents</li>
|
||||||
|
<li>Pictures</li>
|
||||||
|
<li>Music</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>Desktop</li>
|
||||||
|
<li>Downloads</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<button id="confirmCopy">Copy Here</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
const fileItems = document.querySelectorAll('.file-item');
|
||||||
|
const contextMenu = document.getElementById('contextMenu');
|
||||||
|
const moveBtn = document.getElementById('moveBtn');
|
||||||
|
const copyBtn = document.getElementById('copyBtn');
|
||||||
|
const deleteBtn = document.getElementById('deleteBtn');
|
||||||
|
const infoModal = document.getElementById('infoModal');
|
||||||
|
const copyModal = document.getElementById('copyModal');
|
||||||
|
const modalTitle = document.getElementById('modalTitle');
|
||||||
|
const modalInfo = document.getElementById('modalInfo');
|
||||||
|
const closeBtns = document.getElementsByClassName('close');
|
||||||
|
const confirmCopyBtn = document.getElementById('confirmCopy');
|
||||||
|
|
||||||
|
let selectedFile = null;
|
||||||
|
|
||||||
|
fileItems.forEach(item => {
|
||||||
|
item.addEventListener('click', () => {
|
||||||
|
showModal(item);
|
||||||
|
});
|
||||||
|
|
||||||
|
item.addEventListener('contextmenu', (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
selectedFile = item.querySelector('.file-name').textContent;
|
||||||
|
showContextMenu(e.clientX, e.clientY);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
document.addEventListener('click', (e) => {
|
||||||
|
if (!contextMenu.contains(e.target)) {
|
||||||
|
hideContextMenu();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function showContextMenu(x, y) {
|
||||||
|
contextMenu.style.display = 'block';
|
||||||
|
contextMenu.style.left = `${x}px`;
|
||||||
|
contextMenu.style.top = `${y}px`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideContextMenu() {
|
||||||
|
contextMenu.style.display = 'none';
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModal(item) {
|
||||||
|
const name = item.querySelector('.file-name').textContent;
|
||||||
|
const type = item.dataset.type;
|
||||||
|
const size = item.dataset.size;
|
||||||
|
const modified = item.dataset.modified;
|
||||||
|
const items = item.dataset.items;
|
||||||
|
|
||||||
|
modalTitle.textContent = name;
|
||||||
|
modalInfo.innerHTML = `
|
||||||
|
<p>Type: ${type}</p>
|
||||||
|
${type === 'file' ? `<p>Size: ${size}</p>` : `<p>Items: ${items}</p>`}
|
||||||
|
<p>Last Modified: ${modified}</p>
|
||||||
|
`;
|
||||||
|
|
||||||
|
infoModal.style.display = 'block';
|
||||||
|
}
|
||||||
|
|
||||||
|
Array.from(closeBtns).forEach(btn => {
|
||||||
|
btn.onclick = function() {
|
||||||
|
infoModal.style.display = 'none';
|
||||||
|
copyModal.style.display = 'none';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
window.onclick = function(event) {
|
||||||
|
if (event.target == infoModal) {
|
||||||
|
infoModal.style.display = 'none';
|
||||||
|
}
|
||||||
|
if (event.target == copyModal) {
|
||||||
|
copyModal.style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
moveBtn.addEventListener('click', () => {
|
||||||
|
alert(`Moving ${selectedFile}`);
|
||||||
|
hideContextMenu();
|
||||||
|
});
|
||||||
|
|
||||||
|
copyBtn.addEventListener('click', () => {
|
||||||
|
copyModal.style.display = 'block';
|
||||||
|
hideContextMenu();
|
||||||
|
});
|
||||||
|
|
||||||
|
confirmCopyBtn.addEventListener('click', () => {
|
||||||
|
alert(`Copying ${selectedFile} to selected location`);
|
||||||
|
copyModal.style.display = 'none';
|
||||||
|
});
|
||||||
|
|
||||||
|
deleteBtn.addEventListener('click', () => {
|
||||||
|
alert(`Deleting ${selectedFile}`);
|
||||||
|
hideContextMenu();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
285
books/test.html
Normal file
285
books/test.html
Normal file
@ -0,0 +1,285 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>File Manager Overview</title>
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.breadcrumb {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
.breadcrumb a {
|
||||||
|
color: #007bff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.breadcrumb a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.file-list {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.file-item {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 5px 10px;
|
||||||
|
border-bottom: 1px solid #e0e0e0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.file-item:hover {
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
.file-name {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
.folder-item {
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: #e6f2ff;
|
||||||
|
}
|
||||||
|
.folder-item:hover {
|
||||||
|
background-color: #d9e9ff;
|
||||||
|
}
|
||||||
|
.context-menu, .modal {
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
.context-menu {
|
||||||
|
background-color: #ffffff;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
|
||||||
|
padding: 5px 0;
|
||||||
|
}
|
||||||
|
.context-menu button {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
padding: 5px 20px;
|
||||||
|
text-align: left;
|
||||||
|
border: none;
|
||||||
|
background: none;
|
||||||
|
cursor: pointer;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.context-menu button:hover {
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
}
|
||||||
|
.modal {
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: rgba(0,0,0,0.4);
|
||||||
|
}
|
||||||
|
.modal-content {
|
||||||
|
background-color: #fefefe;
|
||||||
|
margin: 15% auto;
|
||||||
|
padding: 20px;
|
||||||
|
border: 1px solid #888;
|
||||||
|
width: 80%;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
.close {
|
||||||
|
color: #aaa;
|
||||||
|
float: right;
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: bold;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.close:hover,
|
||||||
|
.close:focus {
|
||||||
|
color: black;
|
||||||
|
text-decoration: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
#fileSystem {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
padding: 10px;
|
||||||
|
margin-top: 10px;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
#fileSystem .file-item {
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
#fileSystem .breadcrumb {
|
||||||
|
font-size: 0.8em;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main class="container">
|
||||||
|
<div class="breadcrumb">
|
||||||
|
<a href="#">Home</a> / <a href="#">Documents</a> / Current Folder
|
||||||
|
</div>
|
||||||
|
<h1>File Manager</h1>
|
||||||
|
<ul class="file-list">
|
||||||
|
<li class="file-item folder-item" data-type="folder" data-items="5" data-modified="2023-05-12">
|
||||||
|
<span class="file-name">Documents</span>
|
||||||
|
<span class="file-size">5 items</span>
|
||||||
|
</li>
|
||||||
|
<li class="file-item" data-type="file" data-size="10 KB" data-modified="2023-05-15">
|
||||||
|
<span class="file-name">document.txt</span>
|
||||||
|
<span class="file-size">10 KB</span>
|
||||||
|
</li>
|
||||||
|
<li class="file-item" data-type="file" data-size="2 MB" data-modified="2023-05-14">
|
||||||
|
<span class="file-name">image.jpg</span>
|
||||||
|
<span class="file-size">2 MB</span>
|
||||||
|
</li>
|
||||||
|
<li class="file-item" data-type="file" data-size="500 KB" data-modified="2023-05-13">
|
||||||
|
<span class="file-name">spreadsheet.xlsx</span>
|
||||||
|
<span class="file-size">500 KB</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<div id="contextMenu" class="context-menu">
|
||||||
|
<button id="moveBtn">Move</button>
|
||||||
|
<button id="copyBtn">Copy</button>
|
||||||
|
<button id="deleteBtn">Delete</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="infoModal" class="modal">
|
||||||
|
<div class="modal-content">
|
||||||
|
<span class="close">×</span>
|
||||||
|
<h2 id="modalTitle"></h2>
|
||||||
|
<p id="modalInfo"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="copyModal" class="modal">
|
||||||
|
<div class="modal-content">
|
||||||
|
<span class="close">×</span>
|
||||||
|
<h2>Copy to:</h2>
|
||||||
|
<div id="fileSystem">
|
||||||
|
<div class="breadcrumb">
|
||||||
|
<a href="#">Home</a> / <a href="#">Documents</a>
|
||||||
|
</div>
|
||||||
|
<ul class="file-list">
|
||||||
|
<li class="file-item folder-item" data-type="folder" data-items="3">
|
||||||
|
<span class="file-name">Pictures</span>
|
||||||
|
<span class="file-size">3 items</span>
|
||||||
|
</li>
|
||||||
|
<li class="file-item folder-item" data-type="folder" data-items="2">
|
||||||
|
<span class="file-name">Music</span>
|
||||||
|
<span class="file-size">2 items</span>
|
||||||
|
</li>
|
||||||
|
<li class="file-item" data-type="file" data-size="15 KB">
|
||||||
|
<span class="file-name">notes.txt</span>
|
||||||
|
<span class="file-size">15 KB</span>
|
||||||
|
</li>
|
||||||
|
<li class="file-item" data-type="file" data-size="1.2 MB">
|
||||||
|
<span class="file-name">report.pdf</span>
|
||||||
|
<span class="file-size">1.2 MB</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<button id="confirmCopy">Copy Here</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
const fileItems = document.querySelectorAll('.file-item');
|
||||||
|
const contextMenu = document.getElementById('contextMenu');
|
||||||
|
const moveBtn = document.getElementById('moveBtn');
|
||||||
|
const copyBtn = document.getElementById('copyBtn');
|
||||||
|
const deleteBtn = document.getElementById('deleteBtn');
|
||||||
|
const infoModal = document.getElementById('infoModal');
|
||||||
|
const copyModal = document.getElementById('copyModal');
|
||||||
|
const modalTitle = document.getElementById('modalTitle');
|
||||||
|
const modalInfo = document.getElementById('modalInfo');
|
||||||
|
const closeBtns = document.getElementsByClassName('close');
|
||||||
|
const confirmCopyBtn = document.getElementById('confirmCopy');
|
||||||
|
|
||||||
|
let selectedFile = null;
|
||||||
|
|
||||||
|
fileItems.forEach(item => {
|
||||||
|
item.addEventListener('click', () => {
|
||||||
|
showModal(item);
|
||||||
|
});
|
||||||
|
|
||||||
|
item.addEventListener('contextmenu', (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
selectedFile = item.querySelector('.file-name').textContent;
|
||||||
|
showContextMenu(e.clientX, e.clientY);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
document.addEventListener('click', (e) => {
|
||||||
|
if (!contextMenu.contains(e.target)) {
|
||||||
|
hideContextMenu();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function showContextMenu(x, y) {
|
||||||
|
contextMenu.style.display = 'block';
|
||||||
|
contextMenu.style.left = `${x}px`;
|
||||||
|
contextMenu.style.top = `${y}px`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideContextMenu() {
|
||||||
|
contextMenu.style.display = 'none';
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModal(item) {
|
||||||
|
const name = item.querySelector('.file-name').textContent;
|
||||||
|
const type = item.dataset.type;
|
||||||
|
const size = item.dataset.size;
|
||||||
|
const modified = item.dataset.modified;
|
||||||
|
const items = item.dataset.items;
|
||||||
|
|
||||||
|
modalTitle.textContent = name;
|
||||||
|
modalInfo.innerHTML = `
|
||||||
|
<p>Type: ${type}</p>
|
||||||
|
${type === 'file' ? `<p>Size: ${size}</p>` : `<p>Items: ${items}</p>`}
|
||||||
|
<p>Last Modified: ${modified}</p>
|
||||||
|
`;
|
||||||
|
|
||||||
|
infoModal.style.display = 'block';
|
||||||
|
}
|
||||||
|
|
||||||
|
Array.from(closeBtns).forEach(btn => {
|
||||||
|
btn.onclick = function() {
|
||||||
|
infoModal.style.display = 'none';
|
||||||
|
copyModal.style.display = 'none';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
window.onclick = function(event) {
|
||||||
|
if (event.target == infoModal) {
|
||||||
|
infoModal.style.display = 'none';
|
||||||
|
}
|
||||||
|
if (event.target == copyModal) {
|
||||||
|
copyModal.style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
moveBtn.addEventListener('click', () => {
|
||||||
|
alert(`Moving ${selectedFile}`);
|
||||||
|
hideContextMenu();
|
||||||
|
});
|
||||||
|
|
||||||
|
copyBtn.addEventListener('click', () => {
|
||||||
|
copyModal.style.display = 'block';
|
||||||
|
hideContextMenu();
|
||||||
|
});
|
||||||
|
|
||||||
|
confirmCopyBtn.addEventListener('click', () => {
|
||||||
|
alert(`Copying ${selectedFile} to selected location`);
|
||||||
|
copyModal.style.display = 'none';
|
||||||
|
});
|
||||||
|
|
||||||
|
deleteBtn.addEventListener('click', () => {
|
||||||
|
alert(`Deleting ${selectedFile}`);
|
||||||
|
hideContextMenu();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -1 +0,0 @@
|
|||||||
- [Test Page](test/test.md)
|
|
168
books/test2.html
Normal file
168
books/test2.html
Normal file
@ -0,0 +1,168 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>File Storage Interface</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#file-list {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
#file-list li {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
#file-list button {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>File Storage Interface</h1>
|
||||||
|
<input type="file" id="file-input">
|
||||||
|
<button onclick="uploadFile()">Upload</button>
|
||||||
|
<h2>File List</h2>
|
||||||
|
<ul id="file-list"></ul>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
class FileStorage {
|
||||||
|
constructor() {
|
||||||
|
this.storage = localStorage;
|
||||||
|
}
|
||||||
|
|
||||||
|
upload(file) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const reader = new FileReader();
|
||||||
|
reader.onload = (event) => {
|
||||||
|
const fileData = event.target.result;
|
||||||
|
const fileInfo = {
|
||||||
|
name: file.name,
|
||||||
|
size: file.size,
|
||||||
|
type: file.type,
|
||||||
|
data: fileData
|
||||||
|
};
|
||||||
|
this.storage.setItem(file.name, JSON.stringify(fileInfo));
|
||||||
|
resolve(fileInfo);
|
||||||
|
};
|
||||||
|
reader.onerror = (error) => reject(error);
|
||||||
|
reader.readAsDataURL(file);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
download(fileName) {
|
||||||
|
const fileInfo = this.getFileInfo(fileName);
|
||||||
|
if (!fileInfo) {
|
||||||
|
throw new Error('File not found');
|
||||||
|
}
|
||||||
|
const link = document.createElement('a');
|
||||||
|
link.href = fileInfo.data;
|
||||||
|
link.download = fileInfo.name;
|
||||||
|
link.click();
|
||||||
|
}
|
||||||
|
|
||||||
|
delete(fileName) {
|
||||||
|
this.storage.removeItem(fileName);
|
||||||
|
}
|
||||||
|
|
||||||
|
list() {
|
||||||
|
return Object.keys(this.storage)
|
||||||
|
.map(key => this.getFileInfo(key))
|
||||||
|
.filter(fileInfo => fileInfo !== null)
|
||||||
|
.map(fileInfo => ({
|
||||||
|
name: fileInfo.name,
|
||||||
|
size: fileInfo.size
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
stat(fileName) {
|
||||||
|
const fileInfo = this.getFileInfo(fileName);
|
||||||
|
if (!fileInfo) {
|
||||||
|
throw new Error('File not found');
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
name: fileInfo.name,
|
||||||
|
size: fileInfo.size
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
getFileInfo(fileName) {
|
||||||
|
try {
|
||||||
|
const fileInfo = JSON.parse(this.storage.getItem(fileName));
|
||||||
|
if (fileInfo && fileInfo.name && fileInfo.size) {
|
||||||
|
return fileInfo;
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.warn(`Invalid file info for ${fileName}:`, error);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const fileStorage = new FileStorage();
|
||||||
|
|
||||||
|
function uploadFile() {
|
||||||
|
const fileInput = document.getElementById('file-input');
|
||||||
|
const file = fileInput.files[0];
|
||||||
|
if (file) {
|
||||||
|
fileStorage.upload(file).then(() => {
|
||||||
|
updateFileList();
|
||||||
|
fileInput.value = '';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function downloadFile(fileName) {
|
||||||
|
fileStorage.download(fileName);
|
||||||
|
}
|
||||||
|
|
||||||
|
function deleteFile(fileName) {
|
||||||
|
fileStorage.delete(fileName);
|
||||||
|
updateFileList();
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateFileList() {
|
||||||
|
const fileList = document.getElementById('file-list');
|
||||||
|
fileList.innerHTML = '';
|
||||||
|
const files = fileStorage.list();
|
||||||
|
files.forEach(file => {
|
||||||
|
const li = document.createElement('li');
|
||||||
|
li.textContent = `${file.name} (${formatSize(file.size)})`;
|
||||||
|
const downloadBtn = document.createElement('button');
|
||||||
|
downloadBtn.textContent = 'Download';
|
||||||
|
downloadBtn.onclick = () => downloadFile(file.name);
|
||||||
|
const deleteBtn = document.createElement('button');
|
||||||
|
deleteBtn.textContent = 'Delete';
|
||||||
|
deleteBtn.onclick = () => deleteFile(file.name);
|
||||||
|
li.appendChild(downloadBtn);
|
||||||
|
li.appendChild(deleteBtn);
|
||||||
|
fileList.appendChild(li);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatSize(bytes) {
|
||||||
|
const units = ['B', 'KB', 'MB', 'GB', 'TB'];
|
||||||
|
let size = bytes;
|
||||||
|
let unitIndex = 0;
|
||||||
|
while (size >= 1024 && unitIndex < units.length - 1) {
|
||||||
|
size /= 1024;
|
||||||
|
unitIndex++;
|
||||||
|
}
|
||||||
|
return `${size.toFixed(2)} ${units[unitIndex]}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
updateFileList();
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -1,3 +1,12 @@
|
|||||||
- [Intro](tfgrid4specs/intro.md)
|
- [Intro](tfgrid4specs/intro.md)
|
||||||
- [Test](tfgrid4specs/test.md)
|
- [bootstrap](tfgrid4specs/bootstrap.md)
|
||||||
- [Test2](tech/energy_efficient.md)
|
- [bootstrap_zos](tfgrid4specs/bootstrap_zos.md)
|
||||||
|
- [zinit 2](tfgrid4specs/zinit2.md)
|
||||||
|
- [zinit_registration](tfgrid4specs/zinit_registration.md)
|
||||||
|
- [zinit_units_config](tfgrid4specs/zinit_units_config.md)
|
||||||
|
- [zinit_flist.md](tfgrid4specs/zinit_flist.md)
|
||||||
|
- [zinit_runc.md](tfgrid4specs/zinit_runc.md)
|
||||||
|
- [components](tfgrid4specs/components.md)
|
||||||
|
- [components_tech](tfgrid4specs/components_tech.md)
|
||||||
|
- [openrpc](tfgrid4specs/openrpc.md)
|
||||||
|
- [openrpc_openapi_spec](tfgrid4specs/openrpc_openapi_spec.md)
|
||||||
|
34
collections/tfgrid4specs/bootstrap.md
Normal file
34
collections/tfgrid4specs/bootstrap.md
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
# Bootstrap
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
flowchart TD
|
||||||
|
|
||||||
|
subgraph TFV1[TF Validator Stack]
|
||||||
|
TFH(TFBoot Server)
|
||||||
|
TFR(TFRegistrar)
|
||||||
|
FARMP1(FarmingPool Coordinator)
|
||||||
|
end
|
||||||
|
|
||||||
|
subgraph TFV2[TF Validator Stack]
|
||||||
|
TFH2(TFBoot Server)
|
||||||
|
TFR2(TFRegistrar)
|
||||||
|
FARMP2(FarmingPool Coordinator)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
subgraph ZOS1[Zero OS]
|
||||||
|
Kernel --- ZINIT(ZInit)
|
||||||
|
ZOS(Bootstrap on ZOS) --- Kernel
|
||||||
|
MY(Mycelium Agent)
|
||||||
|
ZINIT --> MY
|
||||||
|
TFH ---|Internet| ZOS
|
||||||
|
TFH2 --- ZOS
|
||||||
|
ZINIT -->|Mycelium| FARMP1
|
||||||
|
ZINIT --> |Mycelium| FARMP2
|
||||||
|
ZINIT -->TFR
|
||||||
|
ZINIT --> TFR2
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
```
|
61
collections/tfgrid4specs/bootstrap_zos.md
Normal file
61
collections/tfgrid4specs/bootstrap_zos.md
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
|
||||||
|
# Bootstrap ZOS
|
||||||
|
|
||||||
|
- automated build process for arm64, amd64
|
||||||
|
- recent kernel
|
||||||
|
- the configuration of the zinit is done on Bootstrap server (which registrars to connect to, the config file)
|
||||||
|
- download the intitial needed binaries and config files from the bootstrap server
|
||||||
|
- when downloading the files check an md5 and check the signature with the specified pub key of bootstrap server
|
||||||
|
- is done by means of a list (text file) which describes the files which need to be downloaded and hash
|
||||||
|
- the list is signed with priv key of the bootstrap server
|
||||||
|
- binaries we need are zinit, mycelium, youki, ttyd and other minimum required components
|
||||||
|
|
||||||
|
when booting the node we specify,
|
||||||
|
|
||||||
|
is then part part of the iso or image created
|
||||||
|
|
||||||
|
- md5 of bootstrap config file
|
||||||
|
- public key of the bootstrap server (to verify the list of binary files)
|
||||||
|
- url of Bootstrap server (can be http(s), ...)
|
||||||
|
- farmerid (no longer going to tfchain, for now just used and put a value in zos we can query)
|
||||||
|
- farmingpoolid (for now just used and put a value in zos we can query)
|
||||||
|
|
||||||
|
### the config file
|
||||||
|
|
||||||
|
content
|
||||||
|
|
||||||
|
- registrars see zinit config
|
||||||
|
- size of root partition (if 0 then ramdisk)
|
||||||
|
- which mycelium nodes to connect to
|
||||||
|
- debug mode, see ttyd,if debug mode specify which mycelium nodes can connect as debugger
|
||||||
|
- root ttyd (for debug purposes, is not enabled by default, needs passwd and mycelium only)
|
||||||
|
- description (so the user using bootstrap can see what is going on)
|
||||||
|
- different location (by name) of the binaries e.g. useful for debug
|
||||||
|
- ?
|
||||||
|
|
||||||
|
the person who sets up (admin) a bootstrap server can specify different config files,
|
||||||
|
when creating the image the user can chose which config file, if only 1 then no
|
||||||
|
choice.
|
||||||
|
|
||||||
|
the admin can create more than 1 dir with the binary files needed.
|
||||||
|
there is a tool which creates a list of the dir and signs this list with the private key of the bootstrap server.
|
||||||
|
|
||||||
|
|
||||||
|
## requirements
|
||||||
|
|
||||||
|
- good decent logging to screen if user asks to see
|
||||||
|
- no need to download an flist to get through the bootstrap (the intial used files are downloaded directly from bootstrap server)
|
||||||
|
- small image
|
||||||
|
- everyone an build their own bootstrap server
|
||||||
|
|
||||||
|
## remarks
|
||||||
|
|
||||||
|
- maybe zinit should be part of the bootstrap in the image, and zinit can download the required binaries like ttyd, mycelium,youki
|
||||||
|
- maybe a small 1 GB root parition should be created to have just these intital files, so it doesn't have to be downloaded all the time.
|
||||||
|
|
||||||
|
## alternatives
|
||||||
|
|
||||||
|
- use flist approach, want to try to keep all as simple as possible though, this
|
||||||
|
widens the components needed, if we use flists then need to be part of same
|
||||||
|
bootstrap server, so we basically have it all embedded in one easy to use
|
||||||
|
component.
|
26
collections/tfgrid4specs/components.md
Normal file
26
collections/tfgrid4specs/components.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
# Implementation Details for the components
|
||||||
|
|
||||||
|
## TFBoot Server
|
||||||
|
|
||||||
|
- existing boot server with required add ons
|
||||||
|
|
||||||
|
## TFRegistrar
|
||||||
|
|
||||||
|
- openrpc/vlang
|
||||||
|
- first version uses postgresql replicated cluster
|
||||||
|
|
||||||
|
|
||||||
|
## FarmingPool Coordinator
|
||||||
|
|
||||||
|
- openrpc/vlang
|
||||||
|
- first version uses postgresql replicated cluster
|
||||||
|
|
||||||
|
## Zinit
|
||||||
|
|
||||||
|
- started as part of bootstrap
|
||||||
|
- connects back to TFRegistrar, to see what needs to be done if anything
|
||||||
|
|
||||||
|
## Mycelium Agent
|
||||||
|
|
||||||
|
- starts from zinit
|
30
collections/tfgrid4specs/components_tech.md
Normal file
30
collections/tfgrid4specs/components_tech.md
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
|
||||||
|
|
||||||
|
## TFBoot Server
|
||||||
|
|
||||||
|
- abilty to generate an ISO, PXE bootable image, ... to boot a node
|
||||||
|
- the chosen server will boot over the network and connect back to the TFBoot server which created the image.
|
||||||
|
|
||||||
|
## TFRegistrar
|
||||||
|
|
||||||
|
- a service that will register the node on the TFGrid 4.x network
|
||||||
|
- is new for 4.x, no longer uses TFChain
|
||||||
|
- initial functions
|
||||||
|
- identity management (users, farmers, kyc/aml, peerreview... )
|
||||||
|
- farming pool registrar (which farming pools exist, ...)
|
||||||
|
- bootstrap init (initial bootstrap of the network, also failback mechanism in case of disaster)
|
||||||
|
|
||||||
|
|
||||||
|
## FarmingPool Coordinator
|
||||||
|
|
||||||
|
- node management (register, unregister, ...)
|
||||||
|
- reward distribution (to farmers who are part of pool)
|
||||||
|
- marketplace, find cloud,AI, ... slices or other services
|
||||||
|
- yield management (make sure nodes are filled up as good as possible)
|
||||||
|
- fiat to TFT/INCA conversion (optional)
|
||||||
|
- monitoring for the nodes in the farmingpool
|
||||||
|
- service level management (SLA, ...)
|
||||||
|
|
||||||
|
## Mycelium Agent
|
||||||
|
|
||||||
|
- our overlay network which gives end2end encryption, connectivity, ...
|
@ -1,2 +1,18 @@
|
|||||||
# Specifications TFGrid 4
|
|
||||||
|
|
||||||
|
# Specs for TFGrid 4 Bootstap process
|
||||||
|
|
||||||
|
Our aim is to simplify the way how we bootstrap our TFGrid 4,
|
||||||
|
The bootstrap can run on existing linux as well as on ZOS 4.
|
||||||
|
|
||||||
|
|
||||||
|
## WHY
|
||||||
|
|
||||||
|
- more modular development
|
||||||
|
- ready for slices, ...
|
||||||
|
- easier to debug
|
||||||
|
- no more tfchain
|
||||||
|
- ready for serverless functions
|
||||||
|
- ready for billing, ...
|
||||||
|
- ready to run on more platforms (windows, osx, linux, zos, ...) through zinit as base workload manager
|
||||||
|
|
||||||
|
this will allow us to also roll out agents (hero) much faster and easier.
|
||||||
|
45
collections/tfgrid4specs/openrpc.md
Normal file
45
collections/tfgrid4specs/openrpc.md
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# OpenRPC
|
||||||
|
|
||||||
|
we use OpenRPC on the Registrar and other services.
|
||||||
|
|
||||||
|
|
||||||
|
The OpenRPC is exposed over rest (and later over other protocols).
|
||||||
|
|
||||||
|
- rpc_in
|
||||||
|
- rpc_id (string) : a unique id for the rpc call
|
||||||
|
- method_name
|
||||||
|
- params (json as text, encrypted with the mycelium pubkey of the rpc server)
|
||||||
|
- pubkey (string) : the pubkey of the caller mycelium agent
|
||||||
|
- signature (rpc_id+method_name+params+return_url+returl_topic signed with Mycelium Agent Priv key of the sender)
|
||||||
|
- async (bool) : if the call should be async, if async will send as message back over mycelium to source, if return url will use that one
|
||||||
|
- return_url (string) : the url to return the result, optional to async return the result to sender (source)
|
||||||
|
- return_topic (string): for the sender to know what the return is for
|
||||||
|
- rpc_return (for async return)
|
||||||
|
- rpc_id (string) : a unique id for the rpc call needs to correspond to the rpc_in and source caller
|
||||||
|
- method_name
|
||||||
|
- pubkey (string) : the pubkey of the rpc server
|
||||||
|
- signature (the result is signed with Mycelium Agent of the server for: rpc_id+method_name+params+result)
|
||||||
|
- topic (string)
|
||||||
|
- result (json as text, encrypted with the mycelium pubkey of the source caller)
|
||||||
|
- rpc_check returns the status of the rpc call which is done, error, running or pending
|
||||||
|
- rpc_id
|
||||||
|
- signature (of rpc_id from the caller)
|
||||||
|
- rpc_kill stop the rpc if it is running and would e.g. take too long
|
||||||
|
- rpc_id
|
||||||
|
- signature (of rpc_id from the caller)
|
||||||
|
|
||||||
|
Because of signatures on the caller can stop a call or check status
|
||||||
|
|
||||||
|
if return_url is provided:
|
||||||
|
|
||||||
|
- the server will process and if async send result back as json over mycelium to the source or over http to the return_url
|
||||||
|
|
||||||
|
the rpc_return is called by an rpc_server to return results to the caller
|
||||||
|
|
||||||
|
see [openrpc_openapi_spec](openrpc_openapi_spec.md) for the OpenRPC spec on top of Rest.
|
||||||
|
|
||||||
|
## Implementation Details
|
||||||
|
|
||||||
|
- the state of the calls on server is kept in redis
|
||||||
|
- timeouts need to be implemented on the server
|
||||||
|
- the encryption & signing is used to provide security
|
286
collections/tfgrid4specs/openrpc_openapi_spec.md
Normal file
286
collections/tfgrid4specs/openrpc_openapi_spec.md
Normal file
@ -0,0 +1,286 @@
|
|||||||
|
## openapi spec as endpoint for OpenRPC Rest Server
|
||||||
|
|
||||||
|
copy paste in https://editor.swagger.io/
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"openapi": "3.0.0",
|
||||||
|
"info": {
|
||||||
|
"title": "Mycelium Agent RPC API",
|
||||||
|
"description": "An API for Mycelium Agent for handling asynchronous tasks, returning results, and managing RPC call statuses.",
|
||||||
|
"version": "1.0.0"
|
||||||
|
},
|
||||||
|
"paths": {
|
||||||
|
"/rpc_in": {
|
||||||
|
"post": {
|
||||||
|
"summary": "Initiates an RPC call",
|
||||||
|
"requestBody": {
|
||||||
|
"required": true,
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/RPCIn"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "RPC initiated",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"rpc_id": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Unique identifier of the initiated RPC call"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/rpc_return": {
|
||||||
|
"post": {
|
||||||
|
"summary": "Handles an asynchronous return of an RPC call result",
|
||||||
|
"requestBody": {
|
||||||
|
"required": true,
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/RPCReturn"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "RPC return received",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"confirmation": {
|
||||||
|
"type": "string",
|
||||||
|
"example": "RPC return successfully received"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/rpc_check": {
|
||||||
|
"get": {
|
||||||
|
"summary": "Checks the status of an RPC call",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "rpc_id",
|
||||||
|
"in": "query",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"description": "The unique identifier of the RPC call"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "signature",
|
||||||
|
"in": "query",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"description": "Signature of the rpc_id, signed by the caller"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Status of the RPC call",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["done", "error", "running", "pending"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/rpc_kill": {
|
||||||
|
"post": {
|
||||||
|
"summary": "Stops an RPC call that is running",
|
||||||
|
"requestBody": {
|
||||||
|
"required": true,
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/RPCKill"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "RPC call stopped",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"confirmation": {
|
||||||
|
"type": "string",
|
||||||
|
"example": "RPC call 12345 has been stopped"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"components": {
|
||||||
|
"schemas": {
|
||||||
|
"RPCIn": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"rpc_id",
|
||||||
|
"method_name",
|
||||||
|
"params",
|
||||||
|
"pubkey",
|
||||||
|
"signature",
|
||||||
|
"async"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"rpc_id": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "A unique identifier for the RPC call."
|
||||||
|
},
|
||||||
|
"method_name": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The name of the method being called."
|
||||||
|
},
|
||||||
|
"params": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "The parameters for the method call in JSON format, is encrypted."
|
||||||
|
},
|
||||||
|
"pubkey": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The public key of the Mycelium Agent making the call."
|
||||||
|
},
|
||||||
|
"signature": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "A signature of rpc_id + method_name + params + return_url + return_topic, signed with the Mycelium Agent private key."
|
||||||
|
},
|
||||||
|
"async": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Indicates whether the call should be asynchronous."
|
||||||
|
},
|
||||||
|
"return_url": {
|
||||||
|
"type": "string",
|
||||||
|
"nullable": true,
|
||||||
|
"description": "The URL to return the result. Optional, used when async is true."
|
||||||
|
},
|
||||||
|
"return_topic": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The topic for the sender to know what the return result is related to."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"example": {
|
||||||
|
"rpc_id": "12345",
|
||||||
|
"method_name": "get_data",
|
||||||
|
"params": { "key": "value" },
|
||||||
|
"pubkey": "abc123",
|
||||||
|
"signature": "signeddata",
|
||||||
|
"async": true,
|
||||||
|
"return_url": "http://callback.url/result",
|
||||||
|
"return_topic": "my_topic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"RPCReturn": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"rpc_id",
|
||||||
|
"method_name",
|
||||||
|
"params",
|
||||||
|
"pubkey",
|
||||||
|
"signature",
|
||||||
|
"topic",
|
||||||
|
"result"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"rpc_id": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The unique identifier of the RPC call, corresponding to the original call."
|
||||||
|
},
|
||||||
|
"method_name": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The name of the method being returned."
|
||||||
|
},
|
||||||
|
"params": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "The parameters of the original method in JSON format."
|
||||||
|
},
|
||||||
|
"pubkey": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The public key of the RPC server."
|
||||||
|
},
|
||||||
|
"signature": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Signature of rpc_id + method_name + params + result, signed with the server's private key."
|
||||||
|
},
|
||||||
|
"topic": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The topic to identify the return message."
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "The result of the RPC call in JSON format."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"example": {
|
||||||
|
"rpc_id": "12345",
|
||||||
|
"method_name": "get_data",
|
||||||
|
"params": { "key": "value" },
|
||||||
|
"pubkey": "server_pubkey",
|
||||||
|
"signature": "signed_result_data",
|
||||||
|
"topic": "my_topic",
|
||||||
|
"result": { "data": "returned_value" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"RPCKill": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"rpc_id",
|
||||||
|
"signature"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"rpc_id": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The unique identifier of the RPC call to stop."
|
||||||
|
},
|
||||||
|
"signature": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The signature of the rpc_id, signed by the caller."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"example": {
|
||||||
|
"rpc_id": "12345",
|
||||||
|
"signature": "signed_rpc_id"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
@ -1,4 +0,0 @@
|
|||||||
|
|
||||||
# test
|
|
||||||
|
|
||||||
- link [link](tfgrid4:architecture.md)
|
|
47
collections/tfgrid4specs/zinit2.md
Normal file
47
collections/tfgrid4specs/zinit2.md
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# Zinit 2
|
||||||
|
|
||||||
|
- zinit will register over openrpc with TFRegistrar(s)
|
||||||
|
- zinit needs support for flists
|
||||||
|
- zinit needs support for runc
|
||||||
|
- zinit can modify its zinit unit files for properly signed instructions from TFRegistrar(s)
|
||||||
|
|
||||||
|
## multiplatform
|
||||||
|
|
||||||
|
- can run in ZOS4
|
||||||
|
- can run on top of Ubuntu 24.04 and Arch Linux (probably more later)
|
||||||
|
|
||||||
|
## config file
|
||||||
|
|
||||||
|
zinit2 can be started with following config file, this will tell zinit2 to talk to a registrar and take instructions.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"TFRegistrarServers": [
|
||||||
|
{
|
||||||
|
"name": "Registrar1",
|
||||||
|
"url": "http://192.168.1.1:8080",
|
||||||
|
"pub_key": "abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Registrar2",
|
||||||
|
"url": "http://192.168.1.2:8081",
|
||||||
|
"pub_key": "fedcba0987654321fedcba0987654321fedcba0987654321fedcba0987654321"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Registrar3",
|
||||||
|
"url": "http://192.168.1.3:8082",
|
||||||
|
"pub_key": "1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"min_servers_required_for_signing": 2,
|
||||||
|
"debug": false
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
url can be ipv6 or a name, also https
|
||||||
|
|
||||||
|
|
||||||
|
## implementation
|
||||||
|
|
||||||
|
Have a driver which uses zinit, keep zinit small, do in V.
|
15
collections/tfgrid4specs/zinit_flist.md
Normal file
15
collections/tfgrid4specs/zinit_flist.md
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Zinit Flist
|
||||||
|
|
||||||
|
- add ability to download flists and use as rootfs for the zinit process
|
||||||
|
- md5 of flist can be set, and zinit will check if the flist is still valid
|
||||||
|
- we need a workdir into zinit, which then is the root of the flist
|
||||||
|
- specify if its read only or we allow write (with overlayfs)
|
||||||
|
|
||||||
|
## implementation
|
||||||
|
|
||||||
|
Have a driver which uses zinit, keep zinit small, do in V.
|
||||||
|
|
||||||
|
## todo first
|
||||||
|
|
||||||
|
- make tutorial how to mount flist, how to use the new flist hub, how to mount it readonly-readwrite
|
||||||
|
- check how to use runc to mount an flist
|
62
collections/tfgrid4specs/zinit_registration.md
Normal file
62
collections/tfgrid4specs/zinit_registration.md
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
|
||||||
|
## registration
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Zinit needs tools to get this info and report it to the registrar.
|
||||||
|
|
||||||
|
```go
|
||||||
|
struct Registration {
|
||||||
|
pub_key string //public key of the node mycelium
|
||||||
|
mycelium_address string //the ipv6 addr
|
||||||
|
capacity Capacity
|
||||||
|
pub_key_signature string //signed pubkey with TPM on motherboard
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Capacity {
|
||||||
|
memory_gb f64 // Memory size in GB
|
||||||
|
disks []Disk // List of disks (both SSDs and HDDs)
|
||||||
|
cpu CPU // Enum for CPU type
|
||||||
|
}
|
||||||
|
|
||||||
|
struct CPU {
|
||||||
|
cpu_type CPUType // Size of the disk in GB
|
||||||
|
description string
|
||||||
|
cpu_vcores int // Number of CPU virtual cores
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
struct Disk {
|
||||||
|
size_gb f64 // Size of the disk in GB
|
||||||
|
disk_type DiskType // Enum for disk type (SSD or HDD)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Enum for disk types
|
||||||
|
enum DiskType {
|
||||||
|
ssd
|
||||||
|
hdd
|
||||||
|
}
|
||||||
|
// Enum for CPU types
|
||||||
|
enum CPUType {
|
||||||
|
intel_xeon
|
||||||
|
amd_epyc
|
||||||
|
intel_core9
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
the registration is done to all known registrars using openrpc
|
||||||
|
|
||||||
|
- register
|
||||||
|
- json payload
|
||||||
|
- ... see the openrpc spec rest server
|
||||||
|
|
||||||
|
failsafe
|
||||||
|
|
||||||
|
- zinit does this every hour on each know registrar, will be used for watchdog
|
||||||
|
- zinit at start keeps on trying for at least 1h on all servers each 5 sec, once a registrar found go to maintenance mode (which is once an hour)
|
||||||
|
|
||||||
|
## implementation
|
||||||
|
|
||||||
|
Have a driver which uses zinit, keep zinit small, do in V.
|
24
collections/tfgrid4specs/zinit_runc.md
Normal file
24
collections/tfgrid4specs/zinit_runc.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Zinit RunC
|
||||||
|
|
||||||
|
- json as defined in https://github.com/opencontainers/runtime-spec
|
||||||
|
- use https://github.com/containers/youki (maybe even better integrate it in our zinit binary) to execute
|
||||||
|
- allow flist in mounts (so we can mount an flist in a runc container)
|
||||||
|
- allow to attach https://github.com/tsl0922/ttyd to the runc container (can be separate process in zinit)
|
||||||
|
- set passwd, set listening port & host interface (e.g. mycelium)
|
||||||
|
|
||||||
|
|
||||||
|
## todo first
|
||||||
|
|
||||||
|
- tutorial how to use runc spec and mount it
|
||||||
|
- make example how to use ttyd with runc
|
||||||
|
- make example e.g. postgresql running in runc starting from our podman/buildah (hercontainers). we have that installer
|
||||||
|
|
||||||
|
try ai prompt
|
||||||
|
|
||||||
|
```
|
||||||
|
can we export the runc json from podman, and how can we run it manually using runc ourselves
|
||||||
|
```
|
||||||
|
|
||||||
|
## implementation
|
||||||
|
|
||||||
|
Have a driver which uses zinit, keep zinit small, do in V.
|
40
collections/tfgrid4specs/zinit_units_config.md
Normal file
40
collections/tfgrid4specs/zinit_units_config.md
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
|
||||||
|
## Units Config
|
||||||
|
|
||||||
|
- zinit is using unit files (which describes a service)
|
||||||
|
- the functionality described here allows zinit to reconfigure itself so we can always get out of issues
|
||||||
|
|
||||||
|
there are 3 main reasons to have this functionality
|
||||||
|
|
||||||
|
1. debug/development (only if debug flag is set in config)
|
||||||
|
2. fallback/disaster recovery
|
||||||
|
3. bootstrap, for the first initial setup, a node will receive the required setup in zinit, e.g. connect to farmingpool...
|
||||||
|
|
||||||
|
in normal mode the zinit will contact the registrar once an hour and check if there is something to be done.
|
||||||
|
|
||||||
|
there are 2 modes
|
||||||
|
|
||||||
|
- maintenance: check every 1h
|
||||||
|
- active: check every 5 sec
|
||||||
|
|
||||||
|
some prinpciples
|
||||||
|
|
||||||
|
- each instruction given to zero-os needs to be properly signed by the required amount of registrars.
|
||||||
|
- each instruction is a openrpc instruction where we use the openrpc return mechanism as described in [openrpc.md](openrpc.md).
|
||||||
|
|
||||||
|
## available instructions
|
||||||
|
|
||||||
|
- method_name: mode_active
|
||||||
|
- params:
|
||||||
|
- enddate : int (epoch time when to switch to maintenance mode, can never be longer than 2h)
|
||||||
|
- nothing to return
|
||||||
|
- method_name: zinit_list
|
||||||
|
- returns list of all units (service files) and their status
|
||||||
|
- method_name: zinit_set
|
||||||
|
- set a zinit unit file (service file) with all possibilities (see zinit specs)
|
||||||
|
- method_name: zinit_delete
|
||||||
|
- name of the zinit unit file
|
||||||
|
|
||||||
|
## implementation
|
||||||
|
|
||||||
|
Have a driver which uses zinit, keep zinit small, do in V.
|
1
heroscript/tfgrid4specs/SUMMARY.md
Symbolic link
1
heroscript/tfgrid4specs/SUMMARY.md
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../../books/tfgrid4specs/SUMMARY.md
|
@ -1,11 +0,0 @@
|
|||||||
|
|
||||||
```js
|
|
||||||
|
|
||||||
!!books.configure
|
|
||||||
buildroot:'~/hero/var/mdbuild'
|
|
||||||
publishroot:'~/hero/www/info'
|
|
||||||
install:true
|
|
||||||
reset:false
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
8
heroscript/tfgrid4specs/develop.sh
Executable file
8
heroscript/tfgrid4specs/develop.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -ex
|
||||||
|
|
||||||
|
#~/code/github/freeflowuniverse/crystallib/cli/hero/compile_debug.sh
|
||||||
|
|
||||||
|
hero mdbook -u https://git.ourworld.tf/tfgrid/info_tfgrid/src/branch/development/heroscript/tfgrid4specs -o
|
||||||
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
|||||||
|
|
||||||
```js
|
|
||||||
!!sshagent.key_add
|
|
||||||
name:'books'
|
|
||||||
privkey:'
|
|
||||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
|
||||||
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW
|
|
||||||
QyNTUxOQAAACDXf9Z/2AH8/8a1ppagCplQdhWyQ8wZAieUw3nNcxsDiQAAAIhb3ybRW98m
|
|
||||||
0QAAAAtzc2gtZWQyNTUxOQAAACDXf9Z/2AH8/8a1ppagCplQdhWyQ8wZAieUw3nNcxsDiQ
|
|
||||||
AAAEC+fcDBPqdJHlJOQJ2zXhU2FztKAIl3TmWkaGCPnyts49d/1n/YAfz/xrWmlqAKmVB2
|
|
||||||
FbJDzBkCJ5TDec1zGwOJAAAABWJvb2tz
|
|
||||||
-----END OPENSSH PRIVATE KEY-----
|
|
||||||
'
|
|
||||||
```
|
|
3
heroscript/tfgrid4specs/sync_production.sh
Executable file
3
heroscript/tfgrid4specs/sync_production.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
hero mdbook -u https://git.ourworld.tf/tfgrid/info_tfgrid/src/branch/main/heroscript/tfgrid4specs
|
||||||
|
rsync -rv --delete ~/hero/www/info/tfgrid4specs/ root@info.ourworld.tf:/root/hero/www/info/tfgrid4specs/
|
Loading…
Reference in New Issue
Block a user