mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Alerting: Cleanup and move legacy to a legacy file A quick cleanup of the ngalert/api directory, optimising for an easy removal of what is will be considered legacy at some point. A quick summary of what's done is: - Add a prefix `generated` prefix to files that are auto-generated by our swagger definitions. - Create a legacy file to place all the legacy API routes implementation and helpers. Deleting files that where no longer needed after this move. - Rename the `lotex` file to `lotex_ruler` - Adding a couple of comments here and there. With this, I hope to organise our code in this directory a bit better given there's a lot going on.
26 lines
701 B
Makefile
26 lines
701 B
Makefile
.DEFAULT_GOAL := all
|
|
|
|
swagger-codegen-api:
|
|
swagger-codegen generate -v \
|
|
-i https://grafana.github.io/alerting-api/post.json \
|
|
-l go-server \
|
|
-Dapis \
|
|
-o ../ \
|
|
--additional-properties packageName=api \
|
|
-t ./templates \
|
|
# --import-mappings eval.RelativeTimeRange="github.com/grafana/grafana/pkg/services/ngalert/eval" \
|
|
# --type-mappings RelativeTimeRange=eval.RelativeTimeRange
|
|
|
|
copy-files:
|
|
python move-and-rename.py
|
|
|
|
fix:
|
|
sed -i -e 's/apimodels\.\[\]PostableAlert/apimodels.PostableAlerts/' ../go/*.go
|
|
sed -i -e 's/apimodels\.\[\]UpdateDashboardAclCommand/apimodels.Permissions/' ../go/*.go
|
|
goimports -w -v ../go/*.go
|
|
|
|
clean:
|
|
rm -rf ../go
|
|
|
|
all: swagger-codegen-api fix copy-files clean
|