diff --git a/.gitignore b/.gitignore index a4beeba7..898b3d80 100644 --- a/.gitignore +++ b/.gitignore @@ -35,4 +35,5 @@ __debug_bin .idea .vscode -screenlog.* \ No newline at end of file +screenlog.* +allapis.txt \ No newline at end of file diff --git a/concatenate_apis.sh b/concatenate_apis.sh new file mode 100644 index 00000000..9761987e --- /dev/null +++ b/concatenate_apis.sh @@ -0,0 +1,32 @@ + #!/bin/bash + +# 定义输出文件名 +output_file="allapis.txt" + +# 清空输出文件(如果存在) +> "$output_file" + +# 定义要处理的 .api 文件列表 +api_files=("server_api/basic.api" "server_api/home-user-auth.api") + + +# 遍历 server_api 目录下的指定 .api 文件 +# for api_file in server_api/*.api; do +for api_file in "${api_files[@]}"; do + # 获取文件名(不包含扩展名) + filename=$(basename "$api_file" .api) + + # 将文件名添加到输出文件 + echo "// ${filename}.api" >> "$output_file" + + # 删除指定内容并将过滤后的 .api 文件内容追加到输出文件 + sed -e '/syntax = "v1"/d' \ + -e '/info (/,/)/d' \ + -e '/title: \/\/ TODO: add title/d' \ + -e '/desc: \/\/ TODO: add description/d' \ + -e '/author: ""/d' \ + -e '/email: ""/d' "$api_file" >> "$output_file" + + # 在不同 .api 文件内容之间添加一个空行 + echo "" >> "$output_file" +done \ No newline at end of file diff --git a/server_api/about-us.api b/server_api/about-us.api deleted file mode 100644 index 523d52ba..00000000 --- a/server_api/about-us.api +++ /dev/null @@ -1,15 +0,0 @@ -syntax = "v1" - -info ( - title: // TODO: add title - desc: // TODO: add description - author: "" - email: "" -) - -import "basic.api" - -service user-auth { - @handler GreetHandler - get /greet/from/:name(request) returns (response); -} \ No newline at end of file diff --git a/server_api/cloud-storage.api b/server_api/cloud-storage.api deleted file mode 100644 index 523d52ba..00000000 --- a/server_api/cloud-storage.api +++ /dev/null @@ -1,15 +0,0 @@ -syntax = "v1" - -info ( - title: // TODO: add title - desc: // TODO: add description - author: "" - email: "" -) - -import "basic.api" - -service user-auth { - @handler GreetHandler - get /greet/from/:name(request) returns (response); -} \ No newline at end of file diff --git a/server_api/contact-us.api b/server_api/contact-us.api deleted file mode 100644 index 523d52ba..00000000 --- a/server_api/contact-us.api +++ /dev/null @@ -1,15 +0,0 @@ -syntax = "v1" - -info ( - title: // TODO: add title - desc: // TODO: add description - author: "" - email: "" -) - -import "basic.api" - -service user-auth { - @handler GreetHandler - get /greet/from/:name(request) returns (response); -} \ No newline at end of file diff --git a/server_api/designs.api b/server_api/designs.api deleted file mode 100644 index 648fcb4b..00000000 --- a/server_api/designs.api +++ /dev/null @@ -1,15 +0,0 @@ -syntax = "v1" - -info ( - title: // TODO: add title - desc: // TODO: add description - author: "" - email: "" -) - -import "basic.api" - -service user-auth { - @handler GreetHandler - get /greet/from/:name(request) returns (response); -} \ No newline at end of file diff --git a/server_api/profile.api b/server_api/profile.api deleted file mode 100644 index 523d52ba..00000000 --- a/server_api/profile.api +++ /dev/null @@ -1,15 +0,0 @@ -syntax = "v1" - -info ( - title: // TODO: add title - desc: // TODO: add description - author: "" - email: "" -) - -import "basic.api" - -service user-auth { - @handler GreetHandler - get /greet/from/:name(request) returns (response); -} \ No newline at end of file