| 
									
										
										
										
											2012-11-20 17:56:30 +00:00
										 |  |  | class CoAuthor | 
					
						
							|  |  |  |   include Mongoid::Document | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   LANGUAGE_TYPES = [ "English", "Chinese" ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   field :name_id, type: BSON::ObjectId | 
					
						
							|  |  |  |   field :co_author, localize: true | 
					
						
							|  |  |  |   field :email | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 09:16:28 +00:00
										 |  |  |   belongs_to :co_author_relations | 
					
						
							| 
									
										
										
										
											2012-11-20 17:56:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-29 14:37:13 +00:00
										 |  |  |   VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/ | 
					
						
							| 
									
										
										
										
											2012-11-20 17:56:30 +00:00
										 |  |  |   validates :email, format: { with: VALID_EMAIL_REGEX }, | 
					
						
							| 
									
										
										
										
											2012-11-29 14:37:13 +00:00
										 |  |  |             allow_blank: true, | 
					
						
							| 
									
										
										
										
											2012-12-03 06:55:57 +00:00
										 |  |  |             uniqueness: { case_sensitive: false } | 
					
						
							| 
									
										
										
										
											2012-11-20 17:56:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   validates :co_author, presence: true | 
					
						
							| 
									
										
										
										
											2012-11-29 14:37:13 +00:00
										 |  |  |   before_save { |coauthor| coauthor.email = email.downcase if not coauthor.email.nil?} | 
					
						
							| 
									
										
										
										
											2012-11-20 17:56:30 +00:00
										 |  |  | end | 
					
						
							|  |  |  | 
 |