-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthentication.py
267 lines (243 loc) · 9.12 KB
/
authentication.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
# Find out duolicate words
# SELECT word, content, COUNT(*)
# FROM word_content
# group by word
# HAVING COUNT(*) > 1
import streamlit as st
import sqlite3
from sqlite3 import Error
db_file = r"espnaDict_online.sqlite"
def clear_form():
st.session_state["new"] = ""
st.session_state["content"] = ""
def create_connection():
conn = None
try:
conn = sqlite3.connect(db_file)
except sqlite3.Error as e:
print(e)
return conn
def searchByWord(word):
conn = create_connection()
# sql = "select content from word_content where word='"+word+"'"
# sql = "select word, content from word_content where word like'"+word+"%'"
sql = "select word, content from word_content where word='"+word+"'"
cur = conn.cursor()
cur.execute(sql)
rows = cur.fetchall()
conn.close()
return rows
def insertData(word, content):
conn = create_connection()
sql = "INSERT INTO word_content(word, content) VALUES(?,?)"
cur = conn.cursor()
try:
cur.execute(sql, (word, content))
except Error as e:
# st.error("~ 該單字已經存在 ~")
# display_message(str(e))
conn.close()
return 'Fail'
# cur.execute(sql, (word, content))
conn.commit()
conn.close()
return 'Success'
def updateData(word, content):
conn = create_connection()
sql = "UPDATE word_content SET content =? where word = ?"
cur = conn.cursor()
cur.execute(sql, (content, word))
conn.commit()
conn.close()
def deleteData(word):
conn = create_connection()
sql = "DELETE FROM word_content WHERE word = ?"
cur = conn.cursor()
cur.execute(sql, (word,))
conn.commit()
conn.close()
def display_content(df):
if len(df) ==0:
st.error("~ Nothing found in the dictionary ~")
st.write('---')
return "None"
st.write(f"<p style='color:#FF4500'>{df[0][0]}</p>", unsafe_allow_html=True)
content = st.text_area("中文辭義", df[0][1], height = 200, key = "update_delete")
return content
# for multiple contents(not normal situation)
# def display_content(df):
# if len(df) ==0:
# st.write('~ Nothing Found ~')
# st.write('---')
# return
# # need to separate linebreak by \n
# for j in range(len(df)):
# lines = []
# col1, col2 = st.columns((1,2))
# tmp = df[j][1].split(sep='\n')
# with col1:
# st.write(f"<p style='color:#FF4500'>{df[j][0]}</p>", unsafe_allow_html=True)
# with col2:
# content = st.text_area("content", df[j][1], height = 200, key = j)
# # for line in tmp:
# # st.write(line)
# col1, col2 = st.columns((1,2))
# with col1:
# if st.button("提交修改 "+ df[j][0]+ " 內容", key = j):
# updateData(df[j][0], content)
# # df = searchByWord(df[j][0])
# # display_content(df)
# st.success("更新成功 ~")
# st.balloons()
# with col2:
# if st.button("提交刪除單字 "+ df[j][0], key = j):
# deleteData(df[j][0])
# st.success("刪除成功 ~")
# st.snow()
# st.write('---')
# --------------------------------------------------------
# check_password() is copyied from streamlit demo
def check_password():
"""Returns `True` if the user had the correct password."""
def password_entered():
"""Checks whether a password entered by the user is correct."""
if st.session_state["password"] == st.secrets["password"]:
st.session_state["password_correct"] = True
del st.session_state["password"] # don't store password
else:
st.session_state["password_correct"] = False
if "password_correct" not in st.session_state:
# First run, show input for password.
st.text_input(
"Password", type="password", on_change=password_entered, key="password"
)
return False
elif not st.session_state["password_correct"]:
# Password not correct, show input + error.
st.text_input(
"Password", type="password", on_change=password_entered, key="password"
)
st.error("😕 Password incorrect")
return False
else:
# Password correct.
return True
if check_password():
st.subheader("修改與刪除西語字彙與其中文辭義")
with st.form("update_delete_form"):
word = st.text_input('輸入欲修改或刪除的西文單字(完整單字)', '')
c1, c2, c3 = st.columns(3)
with c1:
search = st.form_submit_button("查詢")
with c2:
update = st.form_submit_button("提交修改 "+ word)
with c3:
delete = st.form_submit_button("提交刪除 "+ word)
# content = "None"
if search:
df = searchByWord(word)
content = display_content(df)
# if content =="None":
# print("check")
if update:
if 'update_delete' not in st.session_state:
st.error("No content")
else:
content = st.session_state["update_delete"]
updateData(word, content)
st.success("更新成功 ~")
st.balloons()
if delete:
if 'update_delete' not in st.session_state:
st.error("No content ")
else:
deleteData(word)
st.success("刪除成功 ~")
st.snow()
# -------------------------------------
# st.subheader("修改與刪除西語字彙與其中文辭義")
# word = st.text_input('輸入欲修改或刪除的西文單字(完整單字)', '')
# st.write('---')
# df = searchByWord(word)
# display_content(df)
# --------------------------------------
# if searchBtn :
# df = searchByWord(word)
# display_content(df)
# col1, col2 = st.columns(2)
# with col1:
# word = st.text_input('輸入西班牙語單字查詢中文辭義(完整單字)', 'España')
# with col2:
# if st.button("查詢"):
# df = searchByWord(word)
# display_content(df)
# st.write('---')
# df = searchByWord(word)
# display_content(df)
# ----------- INSERT ----------------------------
st.subheader("新增西語字彙與其中文辭義")
with st.expander("打開查閱西文字彙編輯規則"):
st.text("""
(m;f)
1. 委員、代表; ~ político 政治委員
El comisario europeo de Energía no asistió a la cumbre del año pasado. 去年,歐洲能源委員沒有出席峰會。
2. 警察局長、警長
El comisario pidió una mayor colaboración de la policía nacional en el caso. 警長呼籲在此案中加強國家警察的合作。
3. 特派員
4. (Amér.) 檢察官
5. (展覽等等的)主辦人、負責人、策展人
El comisario de la exposición se encargó de redactar el programa de eventos. 展覽策展人負責起草活動計劃。
(vprnl) 沉醉於,全神貫注於: El niño se embarga en el juego todo el día.小孩整天沉迷於遊戲。
-menta
(suf)表示"集合名詞"的意思,例如: vestimenta
-mento
(suf)表示「動作」或「結果」,例如: impedimento, salvamento
menú
(m)(pl. menúes或 menús)
1.菜單,菜譜
2.菜餚(一桌菜的總稱)
3.快餐、特餐;商業套餐
4.日程,日程表
-metría
(suf)表示「計量,測量」
-metro
(suf)
1.表示「計量,測量」
2.表示「公尺,米」
-mienta
(suf)用來構成某些集合名詞,如: herramientas
""")
with st.form("Insert_form"):
new_word = st.text_input('輸入西班牙語單字', '', key = "new")
new_content = st.text_area('輸入中文辭義', '', height = 200, key= "content")
st.text(new_word)
st.text(new_content)
c1, c2, c3 = st.columns(3)
with c1:
confirmed = st.form_submit_button("確認內容")
with c2:
submitted = st.form_submit_button("提交新單字 "+ new_word)
with c3:
clearall = st.form_submit_button("清除以重新輸入", on_click=clear_form)
if submitted:
# if st.button("新增"):
if new_word =='' or new_content == '':
st.error('請輸入單字與中文辭義')
else:
Result = insertData(new_word, new_content)
if Result == 'Success':
st.success('新增成功 ~')
st.snow()
else:
st.error("~ 重複新增:該單字已經存在 ~")
# ------- demo codes --------------------------------------------
# with st.form("my_form"):
# st.write("Inside the form")
# slider_val = st.slider("Form slider")
# checkbox_val = st.checkbox("Form checkbox")
# # Every form must have a submit button.
# submitted = st.form_submit_button("Submit")
# if submitted:
# st.write("slider", slider_val, "checkbox", checkbox_val)
# st.success('新增成功 ~')
# st.write("Outside the form")