forked from acaprojects/couchbase-orm
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b844b10
Showing
242 changed files
with
44,393 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 8f58fa092767b37616e5a7b1069ed209 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.. _couchbaseorm: | ||
|
||
************ | ||
CouchbaseOrm | ||
************ | ||
|
||
.. default-domain:: woop | ||
|
||
CouchbaseOrm is the non-official supported object-document record (ORM) for Couchbase in | ||
Ruby. | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
|
||
installation-configuration | ||
schema-configuration | ||
working-with-data | ||
API <https://mapotempo.github.io/couchbase-orm/api/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.. _installation-configuration: | ||
|
||
**************************** | ||
Installation & Configuration | ||
**************************** | ||
|
||
.. default-domain:: woop | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
|
||
installations | ||
reference/compatibility | ||
reference/configuration | ||
reference/rails-integration | ||
|
||
Overview | ||
-------- | ||
|
||
Learn how to install and configure CouchbaseOrm in the following sections: | ||
|
||
- :ref:`Installation <installation>` | ||
- :ref:`Compatibility <compatibility>` | ||
- :ref:`Configuration <configuration>` | ||
- :ref:`Rails Integration <rails-integration>` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.. _installation: | ||
|
||
************ | ||
Installation | ||
************ | ||
|
||
.. default-domain:: woop | ||
|
||
.. contents:: On this page | ||
:local: | ||
:backlinks: none | ||
:depth: 2 | ||
:class: singlecol | ||
|
||
Install the Gem | ||
=============== | ||
|
||
CouchbaseOrm is hosted on github https://github.com/Mapotempo/couchbase-orm. | ||
It can be installed manually or with bundler. | ||
|
||
To install the gem with bundler, include the following in your ``Gemfile``: | ||
|
||
.. code-block:: ruby | ||
|
||
git_source(:github) do |repo_name| | ||
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/') | ||
"https://github.com/#{repo_name}.git" | ||
end | ||
|
||
gem 'couchbase-orm', github: 'Mapotempo/couchbase-orm' | ||
gem 'couchbase', '~> 3.3.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,245 @@ | ||
.. _associations: | ||
|
||
************ | ||
Associations | ||
************ | ||
|
||
.. default-domain:: woop | ||
|
||
.. contents:: On this page | ||
:local: | ||
:backlinks: none | ||
:depth: 2 | ||
:class: singlecol | ||
|
||
Referenced Associations | ||
======================= | ||
|
||
CouchbaseOrm supports the ``has_many``, ``belongs_to`` and | ||
``has_and_belongs_to_many`` associations familiar to ActiveRecord users. | ||
|
||
Has Many | ||
-------- | ||
|
||
Use the ``has_many`` association to declare that the parent has zero or more | ||
children stored in a separate collection: | ||
|
||
.. code-block:: ruby | ||
|
||
class Band < CouchbaseOrm::Base | ||
|
||
has_many :members | ||
end | ||
|
||
The child model must use ``belongs_to`` to declare the | ||
association with the parent: | ||
|
||
.. code-block:: ruby | ||
|
||
class Member < CouchbaseOrm::Base | ||
|
||
belongs_to :band | ||
end | ||
|
||
The child documents contain references to their | ||
respective parents: | ||
|
||
.. code-block:: ruby | ||
|
||
band = Band.create!(members: [Member.new]) | ||
# => #<Band _id: 6001166d4896684910b8d1c5, > | ||
|
||
band.members | ||
# => [#<Member _id: 6001166d4896684910b8d1c6, band_id: '6001166d4896684910b8d1c5'>] | ||
|
||
Use validations to require that at least one child is present: | ||
|
||
.. code-block:: ruby | ||
|
||
class Band < CouchbaseOrm::Base | ||
|
||
has_many :members | ||
|
||
validates_presence_of :members | ||
end | ||
|
||
Belongs To | ||
---------- | ||
|
||
Use the ``belongs_to`` macro to associate a child with a parent stored in a | ||
separate collection. The ``_id`` of the parent (if a parent is associated) | ||
is stored in the child. | ||
|
||
.. code-block:: ruby | ||
|
||
class Studio < CouchbaseOrm::Base | ||
|
||
belongs_to :band | ||
end | ||
|
||
studio = Studio.create! | ||
# => #<Studio _id: 600118184896684987aa884f, band_id: nil> | ||
|
||
Although ``has_many`` associations require the | ||
corresponding ``belongs_to`` association to be defined on the child, | ||
``belongs_to`` may also be used ``has_many`` macro. | ||
In this case the child is not accessible from the parent | ||
but the parent is accessible from the child: | ||
|
||
.. code-block:: ruby | ||
|
||
class Band < CouchbaseOrm::Base | ||
end | ||
|
||
class Studio < CouchbaseOrm::Base | ||
belongs_to :band | ||
end | ||
|
||
Has And Belongs To Many | ||
----------------------- | ||
|
||
Use the ``has_and_belongs_to_many`` macro to declare a many-to-many | ||
association: | ||
|
||
.. code-block:: ruby | ||
|
||
class Band < CouchbaseOrm::Base | ||
has_and_belongs_to_many :tags | ||
end | ||
|
||
class Tag < CouchbaseOrm::Base | ||
has_and_belongs_to_many :bands | ||
end | ||
|
||
Both model instances store a list of ids of the associated models, if any: | ||
|
||
.. code-block:: ruby | ||
|
||
band = Band.create!(tags: [Tag.create!]) | ||
# => #<Band _id: 60011d554896684b8b910a2a, tag_ids: ['60011d554896684b8b910a29']> | ||
|
||
band.tags | ||
# => [#<Tag _id: 60011d554896684b8b910a29, band_ids: ['60011d554896684b8b910a2a']>] | ||
|
||
Custom Association Names | ||
------------------------ | ||
|
||
You can name your associations whatever you like, but if the class cannot be inferred by | ||
CouchbaseOrm from the name, and neither can the opposite side you'll want to provide the | ||
macro with some additional options to tell CouchbaseOrm how to hook them up. | ||
|
||
.. code-block:: ruby | ||
|
||
class Car < CouchabseOrm::Base | ||
belongs_to :engine, class_name: "Motor" | ||
end | ||
|
||
class Motor < CouchabseOrm::Base | ||
has_many :machine, class_name: "Car" | ||
end | ||
|
||
Custom Foreign Keys | ||
----------------------------- | ||
|
||
The attributes used when looking up associations can be explicitly specified. | ||
The default is to use ``id`` on the "parent" association and ``#{association_name}_id`` | ||
on the "child" association, for example with a has_many/belongs_to: | ||
|
||
.. code-block:: ruby | ||
|
||
class Company < CouchbaseOrm::Base | ||
has_many :emails | ||
end | ||
|
||
class Email < CouchbaseOrm::Base | ||
belongs_to :company | ||
end | ||
|
||
company = Company.find(id) | ||
# looks up emails where emails.company_id == company.id | ||
company.emails | ||
|
||
Specify a different ``foreign_key`` to change the attribute name on the "child" | ||
association: | ||
|
||
.. code-block:: ruby | ||
|
||
class Company < CouchbaseOrm::Base | ||
attribute :c, type: String | ||
has_many :emails, foreign_key: 'c_ref' | ||
end | ||
|
||
class Email < CouchbaseOrm::Base | ||
# This definition of c_ref is automatically generated by CouchbaseOrm: | ||
# attribute :c_ref, type: Object | ||
# But the type can also be specified: | ||
attribute :c_ref, type: String | ||
belongs_to :company, foreign_key: 'c_ref' | ||
end | ||
|
||
company = Company.find(id) | ||
# looks up emails where emails.c_ref == company.c | ||
company.emails | ||
|
||
Polymorphism | ||
------------ | ||
|
||
``has_and_belongs_to_many`` associations support polymorphism, which is | ||
having a single association potentially contain objects of different classes. | ||
For example, we could model an organization in which departments and teams | ||
have managers as follows: | ||
|
||
.. code-block:: ruby | ||
|
||
class Department < CouchbaseOrm::Base | ||
has_and_belongs_to_many :unit, class_name "Manager" | ||
end | ||
|
||
class Team < CouchbaseOrm::Base | ||
has_and_belongs_to_many :unit, class_name "Manager" | ||
end | ||
|
||
class Manager < CouchbaseOrm::Base | ||
belongs_to :unit, polymorphic: true | ||
end | ||
|
||
dept = Department.create! | ||
team = Team.create! | ||
|
||
alice = Manager.create!(unit: dept) | ||
alice.unit == dept | ||
# => true | ||
dept.manager == alice | ||
# => true | ||
|
||
.. _dependent-behavior: | ||
|
||
Dependent Behavior | ||
------------------ | ||
|
||
You can provide dependent options to referenced associations to instruct CouchbaseOrm | ||
how to handle situations where one side of the association is deleted, or is attempted | ||
to be deleted. The options are as follows: | ||
|
||
- ``:destroy``: Destroy the child document(s) and run all of the model callbacks. | ||
|
||
If no ``:dependent`` option is provided, deleting the parent document leaves the child document unmodified | ||
(in other words, the child document continues to reference the now deleted parent document via the foreign key attribute). | ||
The child may become orphaned if it is ordinarily only referenced via the parent. | ||
|
||
.. code-block:: ruby | ||
|
||
class Band < CouchbaseOrm::Base | ||
has_many :albums, dependent: :destroy | ||
belongs_to :label | ||
end | ||
|
||
class Album < CouchbaseOrm::Base | ||
belongs_to :band | ||
end | ||
|
||
class Label < CouchbaseOrm::Base | ||
has_many :bands | ||
end | ||
|
||
Band.first.destroy # Will delete all associated albums. |
Oops, something went wrong.