我正在尝试在Rails 4中创建一个应用程序。
我正在尝试与omniauth和Facebook,linkedin,twitter和googleauth建立设计。我目前正在尝试学习本教程。
http://sourcey.com/rails-4-omniauth-using-devise-with-twitter-facebook-and-linkedin/
我的模型叫做:
user.rb,profile.rb和identity.rb
协会是:
用户
has_one :profile, dependent: :destroy
has_many :identities, dependent: :destroy
资料
belongs_to :user
身份
belongs_to :user
身份也验证:
validates_presence_of :uid, :provider
validates_uniqueness_of :uid, :scope => :provider
我正在尝试在我的用户视图文件夹中创建一个部分,列出每个可选的身份验证方法,并显示用户是否已使用它们进行连接,如果没有,则提供连接它们的链接。
我做了:
<table class="table table-bordered">
<tr>
<td><i class="fa fa-facebook"></i></td>
<td>
<% if @profile.user.identity.provider == 'facebook' %>
<span class="glyphicon glyphicon-ok"</span>
<% else %>
<%= link_to icon('Connect Facebook', id: 'facebookauth'), user_omniauth_authorize_path(:facebook) %>
<% end %>
</td>
</tr>
<tr>
<td><i class="fa fa-google"></i></td>
<td>
<% if @user.identity.provider includes 'googleauth' %>
<span class="glyphicon glyphicon-ok"</span>
<% else %>
<%= link_to icon('Connect Google', id: 'googleauth'), user_omniauth_authorize_path(:google_oauth2) %>
<% end %>
</td>
</tr>
<tr>
<td><i class="fa fa-linkedin"></i></td>
<td>
<% if @user.identity.provider includes 'linkedin' %>
<span class="glyphicon glyphicon-ok"</span>
<% else %>
<%= link_to icon('Connect Linkedin', id: 'linkedinauth'), user_omniauth_authorize_path(:linkedin) %>
<% end %>
</td>
</tr>
<tr>
<td><i class="fa fa-twitter"></i></td>
<td>
<% if @user.identity.provider includes 'twitter' %>
<span class="glyphicon glyphicon-ok"</span>
<% else %>
<%= link_to icon('Connect Twitter', id: 'twitterauth'), user_omniauth_authorize_path(:twitter) %>
<% end %>
</td>
</tr>
</table>
我想在个人资料编辑表单中显示此部分内容。
<div class="formheader">Update your profile</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<%= render 'form' %>
<%= render 'users/authentication' %>
</div>
</div>
我无法弄清楚如何编写链,以便当用户更新其个人资料时,他们可以将其他社交媒体帐户与其身份相关联。
谁能看到我出错的地方?
我尝试了一些不同的东西来连接这些链:
<% if @profile.user.identity.provider == 'facebook' %>
<% if @current_user.profile.identity.provider == 'facebook' %>
<% if @user.profile.identity.provider == 'facebook' %>
我只是猜测 - 我无法弄明白。谁能看到我做错了什么?
答案 0 :(得分:0)
User.identity因用户has_many
身份而无法工作。
您可以执行@user.identities.map(&:provider).include?('facebook')