Spaces:
Sleeping
Sleeping
File size: 2,613 Bytes
bd93156 2eef2eb 2a70fa3 bd93156 2a70fa3 2eef2eb cde90ba 8fa094b 2a70fa3 8fa094b 2a70fa3 bd93156 2a70fa3 8fa094b 2a70fa3 8fa094b 2a70fa3 8fa094b bd93156 8fa094b 2eef2eb cde90ba bd93156 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | import express from 'express';
import { algoliasearch } from "algoliasearch";
const app = express();
app.use(express.json());
async function getcreds() {
let request=await fetch("https://immutablehub-creds.hf.space/creds",{
mode:"cors",
method:"get",
headers:{
"content-type":"application/json"
}
})
let response=await request.json()
return {"jwt":response.jwt,"gateway":response.gateway}
}
async function getToken(){
let request=await fetch("https://immutablehub-creds.hf.space/hft",{
mode:"cors",
method:"get",
headers:{
"content-type":"application/json"
}
})
let response=await request.json()
return {"hft":response.hft}
}
const aclient = algoliasearch('D79SNO8B1R', '5e28f0f65380b998763c5251289f6d9b');
async function SavetoAlgolia(raw){
//const raw = fs.readFileSync("./package.json","utf8");
const pkg = JSON.parse(raw);
const meta = {
name: pkg.name,
description: pkg.description,
author: pkg.author,
license: pkg.license,
version: pkg.version,
readme:`ihub op clone <mcp server name>`
};
let algolia_insertion=await aclient.saveObject({
indexName: 'mcp',
body: meta
});
if(algolia_insertion.taskID){
return true
}
else {
return false
}
}
async function SavetoAlgoliaIPM(raw){
//const raw = fs.readFileSync("./package.json","utf8");
const pkg = JSON.parse(raw);
const meta = {
name: pkg.name,
description: pkg.description,
author: pkg.author,
license: pkg.license,
version: pkg.version,
readme:`ihub op clone <mcp server name>`
};
let algolia_insertion=await aclient.saveObject({
indexName: 'ipm',
body: meta
});
if(algolia_insertion.taskID){
return true
}
else {
return false
}
}
//Routes
app.get('/', (req, res) => {
res.json({ status: 'ok' });
});
app.get('/hft',async (req,res)=>{
let result=await getToken()
res.json({"hft":result.hft})
});
app.get('/creds',async (req,res)=>{
let result=await getcreds()
res.json({"jwt":result.jwt,"gateway":result.gateway})
});
app.post('/algolia',async (req,res)=>{
let {meta}=req.body
let response=await SavetoAlgolia(meta)
res.json({"response":response})
})
app.post('/algoliaipm',async (req,res)=>{
let {meta}=req.body
let response=await SavetoAlgoliaIPM(meta)
res.json({"response":response})
})
// Start
app.listen(7860, () => console.log('server running on port 7860')); |