Skip to content

Commit

Permalink
feat: Upgrade API (#4)
Browse files Browse the repository at this point in the history
* feat: Init project (#3)

* feat: upgrade API

* feat: Generate with API upgrade

* build: Prepare release

* build: Remove android generation

* ci: Create gradle-publish.yml (#2)

* build: Default version

* ci: Create gradle-publish.yml

* ci: Publish release

* test: Comment not implemented tests

* build: Prepare release

* ci: Env vars

* ci: Fix env var

* docs: Readme
  • Loading branch information
taorepoara authored Mar 25, 2024
1 parent 29a4e52 commit 3b8c3a7
Show file tree
Hide file tree
Showing 43 changed files with 1,726 additions and 1,081 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "gradle" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
63 changes: 63 additions & 0 deletions .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle

name: Release
on:
push:
branches:
- main
- rc
- beta
- alpha
- "*.x"

jobs:
get-next-version:
uses: lenra-io/github-actions/.github/workflows/get-version.yml@main

release:
needs: [get-next-version]
if: ${{ needs.get-next-version.outputs.will-release == 'true' }}
uses: lenra-io/github-actions/.github/workflows/release.yml@main

publish:
name: publish
needs: [get-next-version]
if: ${{ needs.get-next-version.outputs.will-release == 'true' }}
runs-on: ubuntu-latest
env:
VERSION: ${{ needs.get-next-version.outputs.version }}
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file

- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0

- run: sed -E "s/^(version\s*=\s*)(.+)\$/\1${{ env.VERSION }}/" -i gradle.properties

- name: Build with Gradle
run: ./gradlew build

- name: Publish to Maven central
run: ./gradlew publish
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_SIGNING_IN_MEMORY_KEY }}
# ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.GPG_SIGNING_IN_MEMORY_KEY_ID }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.GPG_SIGNING_IN_MEMORY_KEY_PASSWORD }}
30 changes: 0 additions & 30 deletions .github/workflows/maven.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ hs_err_pid*
target
.gradle
build

*.env

/api/
11 changes: 9 additions & 2 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ api/openapi.yaml
build.gradle
build.sbt
docs/DataApi.md
docs/DataDocument.md
docs/DataOptions.md
docs/FindDocumentsRequest.md
docs/InsertManyDocuments200Response.md
docs/InsertManyDocumentsRequest.md
docs/UpdateManyDocumentsRequest.md
git_push.sh
gradle.properties
Expand Down Expand Up @@ -35,6 +37,11 @@ src/main/java/io/lenra/api/internal/auth/HttpBasicAuth.java
src/main/java/io/lenra/api/internal/auth/HttpBearerAuth.java
src/main/java/io/lenra/api/internal/client/DataApi.java
src/main/java/io/lenra/api/internal/client/model/AbstractOpenApiSchema.java
src/main/java/io/lenra/api/internal/client/model/DataDocument.java
src/main/java/io/lenra/api/internal/client/model/DataOptions.java
src/main/java/io/lenra/api/internal/client/model/FindDocumentsRequest.java
src/main/java/io/lenra/api/internal/client/model/InsertManyDocuments200Response.java
src/main/java/io/lenra/api/internal/client/model/InsertManyDocumentsRequest.java
src/main/java/io/lenra/api/internal/client/model/UpdateManyDocumentsRequest.java
src/test/java/io/lenra/api/internal/client/model/DataOptionsTest.java
src/test/java/io/lenra/api/internal/client/model/InsertManyDocuments200ResponseTest.java
src/test/java/io/lenra/api/internal/client/model/InsertManyDocumentsRequestTest.java
2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.0-SNAPSHOT
7.4.0-SNAPSHOT
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "interactive"
}
42 changes: 36 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
# lenra-internal-api-client

```bash
docker run --rm -v ${PWD}:/local --workdir /local openapitools/openapi-generator-cli batch /local/gen-conf/java.yml
```

Lenra server internal API
- API version: 0.0.0
- Build date: 2023-12-20T13:30:58.062007Z[Etc/UTC]

The API usable by the Lenra applications

For more information, please visit [https://www.lenra.io/contact.html](https://www.lenra.io/contact.html)
For more information, please visit [https://www.lenra.io/contact.html](https://www.lenra.io/contact.html)

*Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)*

Expand Down Expand Up @@ -157,7 +153,41 @@ Authentication schemes defined for the API:

It's recommended to create an instance of `ApiClient` per thread in a multithreaded environment to avoid any potential issues.

## Author

<!-- CONTRIBUTING -->
## Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.

If you have a suggestion that would make this better, please open an issue with the tag "enhancement".
Don't forget to give the project a star if you liked it! Thanks again!generate

### Generate classes

A part of this lib is generated from the [Lenra API](https://github.com/lenra-io/api).
To generate the classes, run the following commands:

```bash
# Load API
## With wget
wget https://github.com/lenra-io/api/releases/latest/download/load-api.sh -O - -q | bash
## With curl
curl -fsSL https://github.com/lenra-io/api/releases/latest/download/load-api.sh | bash
```

Generate

```bash
docker run --rm -v ${PWD}:/local --workdir /local openapitools/openapi-generator-cli batch /local/gen-conf/java.yml
```

<p align="right">(<a href="#top">back to top</a>)</p>


<!-- LICENSE -->
## License

Distributed under the **MIT** License. See [LICENSE](./LICENSE) for more information.

<p align="right">(<a href="#top">back to top</a>)</p>

1 change: 0 additions & 1 deletion api/api-version.txt

This file was deleted.

Binary file removed api/api.tar.gz
Binary file not shown.
Loading

0 comments on commit 3b8c3a7

Please sign in to comment.