Code Monkey home page Code Monkey logo

Comments (6)

weavejester avatar weavejester commented on August 15, 2024

It sounds like you've mistyped the namespace declaration. What does your first ns form look like?

from docs.

brantchyoga avatar brantchyoga commented on August 15, 2024
(ns todo.handler.users
    (:require [ataraxy.response :as response]
              [buddy.hashers :as hashers]
              [clojure.java.jdbc :as jdbc]
              duct.database.spl
              [integrant.core :as ig])

    (defprotocol Users
        (create-user [db email password]))
    (extend-protocol Users
        duct.database.sql.Boundary
        (create-user [{db :spec} email password]
            (let [pw-hash (hashers/derive password)
                results (jdbc/insert! db :users {:email email, :password pw-hash})]
            (-> results ffirst val))))
    (defmethod ig/init-key ::create [_ {:keys [db]}]
        (fn [{[_ email password] :ataraxy/result}]
            (let [id (create-user db email password)]
                [::response/created (str "/users/" id)])))
)

This is my users.clj file so far. Thank you very responding 👍

from docs.

brantchyoga avatar brantchyoga commented on August 15, 2024

This is my config.edn as well in case the error comes from there...

{:duct.profile/base
 {:duct.core/project-ns todo

  :duct.router/ataraxy
  {:routes 
    {[:get "/"] [:todo.handler/index]
    [:get "/entries"] [:todo.handler.entries/list]
    
    [:post "/entries" {{:keys [description]} :body-params}]
    [:todo.handler.entries/create description]
    
    [:get "/entries/" id] [:todo.handler.entries/find ^int id]
    [:delete "/entries/" id] [:todo.handler.entries/destroy ^int id]

    [:post "/users" {{:keys [email password]} :body-params}]
    [:todo.handler.users/create email password]
    }}
  
  :todo.handler.users/create
  {:db #ig/ref :duct.database/sql}

  [:duct.handler.sql/insert :todo.handler.entries/create]
  {:request {[_ description] :ataraxy/result}
   :sql     ["INSERT INTO entries (description) VALUES (?)" description]
   :location "/entries/{last_insert_rowid}"}

  [:duct.handler.sql/query :todo.handler.entries/list]
  {:sql ["SELECT * FROM entries"]
   :hrefs {:href "/entries/{id}"}}

  [:duct.handler.static/ok :todo.handler/index]
  {:body {:entries "/entries"}}
  
  [:duct.handler.sql/query-one :todo.handler.entries/find]
  {:request {[_ id] :ataraxy/result}
   :sql ["SELECT * FROM entries WHERE id = ?" id]
   :hrefs {:href "/entries/{id}"}}

  [:duct.handler.sql/execute :todo.handler.entries/destroy]
  {:request {[_ id] :ataraxy/result}
   :sql ["DELETE FROM entries WHERE id = ?" id]}

  :duct.migrator/ragtime
  {:migrations [#ig/ref :todo.migration/create-entries
                #ig/ref :todo.migration/create-users]}

  [:duct.migrator.ragtime/sql :todo.migration/create-entries]
  {:up ["CREATE TABLE entries (id INTEGER PRIMARY KEY, description TEXT)"]
   :down ["DROP TABLE entries"]}

   [:duct.migrator.ragtime/sql :todo.migration/create-users]
   {:up ["CREATE TABLE users (id INTEGER PRIMARY KEY, email TEXT UNIQUE, password TEXT)"]
    :down ["DROP TABLE users"]}
 }


 :duct.profile/dev   #duct/include "dev"
 :duct.profile/local #duct/include "local"
 :duct.profile/prod  {}

 :duct.module/logging {}
 :duct.module.web/api
 {}
 :duct.module/sql
 {}}

from docs.

weavejester avatar weavejester commented on August 15, 2024

It looks like you've put your code in your ns declaration by mistake. It should look like this:

(ns todo.handler.users
  (:require [ataraxy.response :as response]
            [buddy.hashers :as hashers]
            [clojure.java.jdbc :as jdbc]
            duct.database.sql
            [integrant.core :as ig]))

(defprotocol Users
  (create-user [db email password]))

(extend-protocol Users
  duct.database.sql.Boundary
  (create-user [{db :spec} email password]
    (let [pw-hash (hashers/derive password)
          results (jdbc/insert! db :users {:email email, :password pw-hash})]
      (-> results ffirst val))))

(defmethod ig/init-key ::create [_ {:keys [db]}]
  (fn [{[_ email password] :ataraxy/result}]
    (let [id (create-user db email password)]
      [::response/created (str "/users/" id)])))

from docs.

brantchyoga avatar brantchyoga commented on August 15, 2024

Thank you! Any good resources for learning clojure? I am going through the docs currently but any other resources would be awesome.

from docs.

weavejester avatar weavejester commented on August 15, 2024

You could take a look at Clojure for the Brave and True or Clojure by Example.

from docs.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.