X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=blobdiff_plain;f=etc%2Fspotlight%2Fslmod_sparql_parser.y;h=e4069bbe381892be8a67f2d877f9400f4ecd6796;hp=68d3d1013afd36fe2ed625ba1d764b737a4e1ed7;hb=371efee757ed56fd9e2f46b39fae625924d2cfc2;hpb=8c25635e752ff3cf4d9abb6965363627d1cab4d7 diff --git a/etc/spotlight/slmod_sparql_parser.y b/etc/spotlight/slmod_sparql_parser.y index 68d3d101..e4069bbe 100644 --- a/etc/spotlight/slmod_sparql_parser.y +++ b/etc/spotlight/slmod_sparql_parser.y @@ -34,6 +34,7 @@ /* local vars */ static gchar *ssp_result; static char sparqlvar; + static char *result_limit; %} %code provides { @@ -71,10 +72,14 @@ input: line: expr { + if (ssp_slq->slq_result_limit) + result_limit = talloc_asprintf(ssp_slq, "LIMIT %ld", ssp_slq->slq_result_limit); + else + result_limit = ""; ssp_result = talloc_asprintf(ssp_slq, - "SELECT DISTINCT ?url WHERE " - "{ ?obj nie:url ?url FILTER(regex(?url, '^file://%s/')) . %s}", - ssp_slq->slq_vol->v_path, $1); + "SELECT ?url WHERE " + "{ %s . ?obj nie:url ?url . FILTER(tracker:uri-is-descendant('file://%s/', ?url)) } %s", + $1, ssp_slq->slq_vol->v_path, result_limit); $$ = ssp_result; } ; @@ -87,6 +92,10 @@ BOOL { YYABORT; } | match OR match { + if (!ssp_slq->slq_allow_expr) + YYABORT; + if ($1 == NULL || $3 == NULL) + YYABORT; if (strcmp($1, $3) != 0) $$ = talloc_asprintf(ssp_slq, "{ %s } UNION { %s }", $1, $3); else @@ -95,7 +104,11 @@ BOOL { | match {$$ = $1; if ($$ == NULL) YYABORT;} | function {$$ = $1;} | OBRACE expr CBRACE {$$ = talloc_asprintf(ssp_slq, "%s", $2);} -| expr AND expr {$$ = talloc_asprintf(ssp_slq, "%s . %s", $1, $3);} +| expr AND expr { + if (!ssp_slq->slq_allow_expr) + YYABORT; + $$ = talloc_asprintf(ssp_slq, "%s . %s", $1, $3); +} | expr OR expr { if (strcmp($1, $3) != 0) $$ = talloc_asprintf(ssp_slq, "{ %s } UNION { %s }", $1, $3); @@ -206,7 +219,7 @@ static const char *map_expr(const char *attr, char op, const char *val) bstring q = NULL, search = NULL, replace = NULL; for (p = spotlight_sparql_map; p->ssm_spotlight_attr; p++) { - if (strcmp(p->ssm_spotlight_attr, attr) == 0) { + if (p->ssm_enabled && (strcmp(p->ssm_spotlight_attr, attr) == 0)) { if (p->ssm_type != ssmt_type && p->ssm_sparql_attr == NULL) { yyerror("unsupported Spotlight attribute"); EC_FAIL; @@ -331,6 +344,7 @@ int main(int argc, char **argv) struct vol *vol = talloc_zero(ssp_slq, struct vol); vol->v_path = "/Volumes/test"; ssp_slq->slq_vol = vol; + ssp_slq->slq_allow_expr = true; sparqlvar = 'a'; s = yy_scan_string(argv[1]);