mirror of
https://github.com/simon987/music-graph-api.git
synced 2025-04-03 14:23:00 +00:00
wip
This commit is contained in:
parent
483fbc5ef4
commit
4195aad139
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
export MGROOT="music_graph_api"
|
||||
export JAVA="/usr/lib/jvm/java-11-oracle"
|
||||
export JAVA="/usr/lib/jvm/java-11-openjdk-amd64"
|
||||
|
||||
screen -S mg_api -X quit
|
||||
screen -S mg_api -d -m bash -c "cd ${MGROOT} && ${JAVA}/bin/java -jar target/music-graph-*-jar-with-dependencies.jar 2> stderr.txt"
|
||||
|
@ -4,9 +4,11 @@ public class Tag {
|
||||
|
||||
public String name;
|
||||
public long id;
|
||||
public long tagid;
|
||||
|
||||
public Tag(long id, String name) {
|
||||
public Tag(long id, long tagid, String name) {
|
||||
this.id = id;
|
||||
this.tagid = tagid;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
@ -4,8 +4,8 @@ public class WeightedTag extends Tag {
|
||||
|
||||
public double weight;
|
||||
|
||||
public WeightedTag(long id, String name, double weight) {
|
||||
super(id, name);
|
||||
public WeightedTag(long id, long tagid, String name, double weight) {
|
||||
super(id, tagid, name);
|
||||
this.weight = weight;
|
||||
}
|
||||
}
|
||||
|
@ -12,6 +12,7 @@ import org.neo4j.driver.v1.types.Node;
|
||||
import org.neo4j.driver.v1.types.Relationship;
|
||||
|
||||
import javax.inject.Singleton;
|
||||
import javax.validation.constraints.Max;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -22,6 +23,7 @@ import java.util.stream.Collectors;
|
||||
public class MusicDatabase extends AbstractBinder {
|
||||
|
||||
private Driver driver;
|
||||
private static final int MaxShortestPaths = 5;
|
||||
|
||||
private static Logger logger = LogManager.getLogger();
|
||||
|
||||
@ -85,7 +87,7 @@ public class MusicDatabase extends AbstractBinder {
|
||||
"WITH a OPTIONAL MATCH (a)-[:CREDITED_FOR]->(r:Release) " +
|
||||
"WITH collect({id: ID(r), mbid:r.id, name:r.name, year:r.year, labels:labels(r)}) as releases, a " +
|
||||
"OPTIONAL MATCH (a)-[r:IS_TAGGED]->(t:Tag) " +
|
||||
"WITH collect({weight: r.weight, name: t.name, id:ID(t)}) as tags, a, releases " +
|
||||
"WITH collect({weight: r.weight, name: t.name, id:ID(t), tagid:t.id}) as tags, a, releases " +
|
||||
"OPTIONAL MATCH (a)-[r:CREDITED_FOR]->(:Release)-[]-(l:Label) " +
|
||||
"RETURN a {name:a.name, year:a.year, comment:a.comment, releases:releases, tags:tags," +
|
||||
" track_previews:a.track_previews, labels:collect(DISTINCT {id:ID(l),mbid:l.id,name:l.name})} " +
|
||||
@ -121,6 +123,7 @@ public class MusicDatabase extends AbstractBinder {
|
||||
.filter(x -> x.get("name") != null)
|
||||
.map(x -> new WeightedTag(
|
||||
(Long) x.get("id"),
|
||||
Long.valueOf((String) x.get("tagid")),
|
||||
(String) x.get("name"),
|
||||
(Double) x.get("weight")
|
||||
))
|
||||
@ -163,9 +166,9 @@ public class MusicDatabase extends AbstractBinder {
|
||||
StatementResult result = query(session,
|
||||
"MATCH (a:Artist) " +
|
||||
"WHERE a.id = $mbid " +
|
||||
"WITH a OPTIONAL MATCH (a)-[r:IS_RELATED_TO]-(b)" +
|
||||
"WITH a OPTIONAL MATCH (a)-[r:IS_RELATED_TO]-(b) " +
|
||||
"WHERE r.weight > 0.15 " +
|
||||
"RETURN a as artist, {rels: collect(DISTINCT r), nodes: collect(DISTINCT b)} as rank1 " +
|
||||
"RETURN a as artist, {rels: collect(r), nodes: collect(b)} as rank1 " +
|
||||
"LIMIT 1",
|
||||
params);
|
||||
|
||||
@ -180,6 +183,36 @@ public class MusicDatabase extends AbstractBinder {
|
||||
}
|
||||
}
|
||||
|
||||
public SearchResult getPath(String idFrom, String idTo) {
|
||||
|
||||
try (Session session = driver.session()) {
|
||||
|
||||
Map<String, Object> params = new HashMap<>();
|
||||
params.put("idFrom", idFrom);
|
||||
params.put("idTo", idTo);
|
||||
|
||||
StatementResult result = query(session,
|
||||
"MATCH p = allShortestPaths(" +
|
||||
"(:Artist {id: $idFrom})-[r:IS_RELATED_TO*..10]-(:Artist {id:$idTo})) " +
|
||||
"WHERE ALL (rel in r WHERE rel.weight > 0.10) " +
|
||||
"return {rels: relationships(p), nodes: nodes(p)} as rank1",
|
||||
params);
|
||||
|
||||
SearchResult out = new SearchResult();
|
||||
int count = 0;
|
||||
while (result.hasNext() && count <= MaxShortestPaths) {
|
||||
Record row = result.next();
|
||||
artistsFromRelMap(out, row.get(0).asMap());
|
||||
count += 1;
|
||||
}
|
||||
|
||||
return out;
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public TagSearchResult getRelatedByTag(long id) {
|
||||
|
||||
try (Session session = driver.session()) {
|
||||
@ -364,6 +397,7 @@ public class MusicDatabase extends AbstractBinder {
|
||||
private static Tag makeTag(Node node) {
|
||||
return new Tag(
|
||||
node.id(),
|
||||
Long.valueOf(node.get("id").asString()),
|
||||
node.get("name").asString()
|
||||
);
|
||||
}
|
||||
@ -399,7 +433,7 @@ public class MusicDatabase extends AbstractBinder {
|
||||
"MATCH (release:Release {id: $mbid})-[:CREDITED_FOR]-(a:Artist) " +
|
||||
"OPTIONAL MATCH (release)-[r:IS_TAGGED]->(t:Tag) " +
|
||||
"RETURN release {name:release.name, year:release.year," +
|
||||
"tags:collect({weight:r.weight, name:t.name, id:ID(t)}), artist: a.name} " +
|
||||
"tags:collect({weight:r.weight, name:t.name, id:ID(t), tagid:t.id}), artist: a.name} " +
|
||||
"LIMIT 1",
|
||||
params);
|
||||
|
||||
@ -420,6 +454,7 @@ public class MusicDatabase extends AbstractBinder {
|
||||
.filter(x -> x.get("name") != null)
|
||||
.map(x -> new WeightedTag(
|
||||
(Long) x.get("id"),
|
||||
Long.valueOf((String) x.get("tagid")),
|
||||
(String) x.get("name"),
|
||||
(Double) x.get("weight")
|
||||
))
|
||||
|
@ -49,4 +49,13 @@ public class ArtistController {
|
||||
return db.getArtistDetails(mbid);
|
||||
}
|
||||
|
||||
@GET
|
||||
@Path("path/{idFrom}/{idTo}")
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
public SearchResult getPath(@PathParam("idFrom") String idFrom, @PathParam("idTo") String idTo) {
|
||||
|
||||
logger.info(String.format("Path from %s to %s", idFrom, idTo));
|
||||
return db.getPath(idFrom, idTo);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user