summaryrefslogtreecommitdiff
path: root/service/pixelated/controllers/tags_controller.py
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-10-15 13:57:13 +0200
committerDuda Dornelles <ddornell@thoughtworks.com>2014-10-15 14:21:26 +0200
commitac3ea5d3838b98b07d182d71f2f3d9f270b5d274 (patch)
tree2aee9e4138d5732ff6890dd07a8a62de7f90d583 /service/pixelated/controllers/tags_controller.py
parent89d26f3cd389f41b83d27ea225944a0ff8bc2e95 (diff)
Extracting controller classes
Diffstat (limited to 'service/pixelated/controllers/tags_controller.py')
-rw-r--r--service/pixelated/controllers/tags_controller.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/service/pixelated/controllers/tags_controller.py b/service/pixelated/controllers/tags_controller.py
new file mode 100644
index 00000000..52ed762a
--- /dev/null
+++ b/service/pixelated/controllers/tags_controller.py
@@ -0,0 +1,30 @@
+#
+# Copyright (c) 2014 ThoughtWorks, Inc.
+#
+# Pixelated is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# Pixelated is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
+
+from flask import request
+from pixelated.controllers import respond_json
+
+
+class TagsController:
+
+ def __init__(self, search_engine):
+ self._search_engine = search_engine
+
+ def tags(self):
+ query = request.args.get('q')
+ skip_default_tags = request.args.get('skipDefaultTags')
+ tags = self._search_engine.tags(query=query, skip_default_tags=skip_default_tags)
+ return respond_json(tags)