-
-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement full-text search of posts with Lucene default (#2675)
#### What type of PR is this? /kind feature /area core /milestone 2.0 #### What this PR does / why we need it: This PR mainly implement full-text search of posts and provide extension point for other search engine. Meanwhile, I implement ExtensionGetter to get implemention(s) of extension point from system ConfigMap. But there still are something to do here: - [x] Udpate documents when posts are published or posts are becoming unpublic. - [x] Delete documents when posts are unpublished or deleted. Because I'm waiting for #2659 got merged. I create two endpoints: 1. For full-text search of post ```bash curl -X 'GET' \ 'http://localhost:8090/apis/api.halo.run/v1alpha1/indices/post?keyword=halo&limit=10000&highlightPreTag=%3CB%3E&highlightPostTag=%3C%2FB%3E' \ -H 'accept: */*' ``` 1. For refreshing indices ```bash curl -X 'POST' \ 'http://localhost:8090/apis/api.console.halo.run/v1alpha1/indices/post' \ -H 'accept: */*' \ -d '' ``` #### Which issue(s) this PR fixes: Fixes ##2637 #### Special notes for your reviewer: #### Does this PR introduce a user-facing change? ```release-note 提供文章全文搜索功能并支持搜索引擎扩展 ```
- Loading branch information
Showing
37 changed files
with
1,468 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/java/run/halo/app/event/post/PostDeletedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package run.halo.app.event.post; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
|
||
public class PostDeletedEvent extends ApplicationEvent { | ||
|
||
private final String postName; | ||
|
||
public PostDeletedEvent(Object source, String postName) { | ||
super(source); | ||
this.postName = postName; | ||
} | ||
|
||
public String getPostName() { | ||
return postName; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/run/halo/app/event/post/PostPublishedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package run.halo.app.event.post; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
|
||
public class PostPublishedEvent extends ApplicationEvent { | ||
|
||
private final String postName; | ||
|
||
public PostPublishedEvent(Object source, String postName) { | ||
super(source); | ||
this.postName = postName; | ||
} | ||
|
||
public String getPostName() { | ||
return postName; | ||
} | ||
|
||
} |
17 changes: 17 additions & 0 deletions
17
src/main/java/run/halo/app/event/post/PostRecycledEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package run.halo.app.event.post; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
|
||
public class PostRecycledEvent extends ApplicationEvent { | ||
|
||
private final String postName; | ||
|
||
public PostRecycledEvent(Object source, String postName) { | ||
super(source); | ||
this.postName = postName; | ||
} | ||
|
||
public String getPostName() { | ||
return postName; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/run/halo/app/event/post/PostUnpublishedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package run.halo.app.event.post; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
|
||
public class PostUnpublishedEvent extends ApplicationEvent { | ||
|
||
private final String postName; | ||
|
||
public PostUnpublishedEvent(Object source, String postName) { | ||
super(source); | ||
this.postName = postName; | ||
} | ||
|
||
public String getPostName() { | ||
return postName; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/main/java/run/halo/app/infra/SchemeInitializedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package run.halo.app.infra; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
|
||
public class SchemeInitializedEvent extends ApplicationEvent { | ||
|
||
public SchemeInitializedEvent(Object source) { | ||
super(source); | ||
} | ||
|
||
} |
Oops, something went wrong.