為避免用戶混淆,網(wǎng)站通常都會(huì)保留一系列用戶名,不開放給普通用戶使用,比如 admin
、administrator
,TvRecipe 項(xiàng)目里,我們將保留這兩個(gè)用戶名,禁止用戶注冊(cè),如果有人嘗試使用它們注冊(cè),則提示系統(tǒng)保留,無法注冊(cè),請(qǐng)更換
。
我們從測(cè)試寫起:
diff --git a/test/tv_recipe/users_test.exs b/test/tv_recipe/users_test.exs
index 26a7735..f70d4a1 100644
--- a/test/tv_recipe/users_test.exs
+++ b/test/tv_recipe/users_test.exs
@@ -65,4 +65,9 @@ defmodule TvRecipe.UserTest do
changeset = User.changeset(%User{}, attrs)
assert %{username: ["用戶名最長(zhǎng) 15 位"]} = errors_on(changeset)
end
+
+ test "username should not be admin or administrator" do
+ assert %{username: ["系統(tǒng)保留,無法注冊(cè),請(qǐng)更換"]} = errors_on(%User{}, %{@valid_attrs | username: "admin"})
+ assert %{username: ["系統(tǒng)保留,無法注冊(cè),請(qǐng)更換"]} = errors_on(%User{}, %{@valid_attrs | username: "administrator"})
+ end
end
然后是添加規(guī)則,照例還是在 user.ex
文件中:
diff --git a/lib/tv_recipe/users/user.ex b/lib/tv_recipe/users/user.ex
index 8c68e6d..35e4d0b 100644
--- a/lib/tv_recipe/users/user.ex
+++ b/lib/tv_recipe/users/user.ex
@@ -19,6 +19,7 @@ defmodule TvRecipe.User do
|> validate_format(:username, ~r/^[a-zA-Z0-9_]+$/, message: "用戶名只允許使用英文字母、數(shù)字及下劃線")
|> validate_length(:username, min: 3, message: "用戶名最短 3 位")
|> validate_length(:username, max: 15, message: "用戶名最長(zhǎng) 15 位")
+ |> validate_exclusion(:username, ~w(admin administrator), message: "系統(tǒng)保留,無法注冊(cè),請(qǐng)更換")
|> unique_constraint(:username, name: :users_lower_username_index, message: "用戶名已被人占用")
|> unique_constraint(:email)
end
這里,我們用 validate_exclusion
來排除 ~w(admin administrator)
數(shù)組中的兩個(gè)用戶名。
再運(yùn)行測(cè)試,悉數(shù)通過。
這樣,我們就完成了所有 username
有關(guān)的規(guī)則.
更多建議: