require 'uri' class LearningObjectsController < ApplicationController include Reportable before_action :set_learning_object, only: [:show, :edit, :update, :destroy, :like, :bookmarks, :collections] after_action :increment_learning_object_views, only: [:show] before_action :authenticate_user!, except: [:index, :show] # GET /learning_objects/1 # GET /learning_objects/1.json def show @liked = learning_object_repository.liked?(current_user, @learning_object) if user_signed_in? end # GET /learning_objects/new def new @learning_object = LearningObject.new @school_levels = ['Educação Infantil', 'Ensino Fundamental', 'Ensino Médio'] @subjects = Subject.default_list @types = learning_object_repository.types end # GET /learning_objects/1/edit def edit end # POST /learning_objects # POST /learning_objects.json def create @learning_object = LearningObject.new(learning_object_params) respond_to do |format| if learning_object_repository.create @learning_object # go to file submission page #format.html { redirect_to me_users_path, notice: 'Learning object was successfully created.' } else #format.html { redirect_to , notice: 'Learning object wasnt successfully created.' } end end end # PATCH/PUT /learning_objects/1 # PATCH/PUT /learning_objects/1.json def update respond_to do |format| if learning_object_repository.update(learning_object_params) format.html { redirect_to @learning_object, notice: 'Learning object was successfully updated.' } else format.html { render :edit } end end end # DELETE /learning_objects/1 # DELETE /learning_objects/1.json def destroy learning_object_repository.destroy @learning_object respond_to do |format| format.html { redirect_to learning_objects_url, notice: 'Learning object was successfully destroyed.' } end end # POST /learning_objects/1/like def like if @learning_object.liked? current_user @learning_object.dislike current_user else @learning_object.like current_user end if request.xhr? render json: {count: @learning_object.likes, id: params[:id]} end end # POST /learning_objects/1/bookmarks def bookmarks bookmarks = current_user.bookmarks bookmarks.add @learning_object collection_repository.save_learning_objects bookmarks if request.xhr? render json: {id: params[:id]} end end # GET /learning_objects/1/collections.json def collections @collections = @learning_object.collections end private def build_subjects(subjects) _subjects = [] subjects.each do |subject| _subjects << subject_repository.find_by_name(subject) end end # Use callbacks to share common setup or constraints between actions. def set_learning_object @learning_object = learning_object_repository.find params[:id] end # Never trust parameters from the scary internet, only allow the white list through. def learning_object_params params[:learning_object].permit(:author, :name, :type, :description, :school_level, :language, subjects: []) end def increment_learning_object_views if user_signed_in? learning_object_repository.increment_views current_user, @learning_object end end end