first-api & file-upload
This commit is contained in:
14
examples/first-api/backend/src/api/ApiHello.ts
Normal file
14
examples/first-api/backend/src/api/ApiHello.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { ApiCall } from "tsrpc";
|
||||
import { ReqHello, ResHello } from "../shared/protocols/PtlHello";
|
||||
|
||||
export async function ApiHello(call: ApiCall<ReqHello, ResHello>) {
|
||||
if (call.req.name === 'World') {
|
||||
call.succ({
|
||||
reply: 'Hello, ' + call.req.name,
|
||||
time: new Date()
|
||||
});
|
||||
}
|
||||
else {
|
||||
call.error('Invalid name');
|
||||
}
|
||||
}
|
26
examples/first-api/backend/src/index.ts
Normal file
26
examples/first-api/backend/src/index.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import * as path from "path";
|
||||
import { HttpServer } from "tsrpc";
|
||||
import { serviceProto } from "./shared/protocols/serviceProto";
|
||||
|
||||
// Create the Server
|
||||
const server = new HttpServer(serviceProto, {
|
||||
port: 3000,
|
||||
cors: '*'
|
||||
});
|
||||
|
||||
// Entry function
|
||||
async function main() {
|
||||
// Auto implement APIs
|
||||
await server.autoImplementApi(path.resolve(__dirname, 'api'));
|
||||
|
||||
// TODO
|
||||
// Prepare something... (e.g. connect the db)
|
||||
|
||||
await server.start();
|
||||
};
|
||||
|
||||
main().catch(e => {
|
||||
// Exit if any error during the startup
|
||||
server.logger.error(e);
|
||||
process.exit(-1);
|
||||
});
|
@@ -0,0 +1,8 @@
|
||||
export interface ReqHello {
|
||||
name: string
|
||||
}
|
||||
|
||||
export interface ResHello {
|
||||
reply: string,
|
||||
time: Date
|
||||
}
|
@@ -0,0 +1,57 @@
|
||||
import { ServiceProto } from 'tsrpc-proto';
|
||||
import { ReqHello, ResHello } from './PtlHello';
|
||||
|
||||
export interface ServiceType {
|
||||
api: {
|
||||
"Hello": {
|
||||
req: ReqHello,
|
||||
res: ResHello
|
||||
}
|
||||
},
|
||||
msg: {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
export const serviceProto: ServiceProto<ServiceType> = {
|
||||
"services": [
|
||||
{
|
||||
"id": 0,
|
||||
"name": "Hello",
|
||||
"type": "api"
|
||||
}
|
||||
],
|
||||
"types": {
|
||||
"PtlHello/ReqHello": {
|
||||
"type": "Interface",
|
||||
"properties": [
|
||||
{
|
||||
"id": 0,
|
||||
"name": "name",
|
||||
"type": {
|
||||
"type": "String"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"PtlHello/ResHello": {
|
||||
"type": "Interface",
|
||||
"properties": [
|
||||
{
|
||||
"id": 0,
|
||||
"name": "reply",
|
||||
"type": {
|
||||
"type": "String"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1,
|
||||
"name": "time",
|
||||
"type": {
|
||||
"type": "Date"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user