Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
yotta
/
pictogram
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
60
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
c03f331d
authored
Sep 07, 2016
by
Fernando Martínez Santiago
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
issue #566 fixed (it was a hard one)
parent
15e19414
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
53 additions
and
45 deletions
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/Action.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/PictoAction.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/PictosAction.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/Room.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/SubscribeAction.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/UnsubscribeAction.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/dao/Picto.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/net/NetService.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/net/PictoUploader.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/tools/Img.java
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/Action.java
View file @
c03f331d
...
...
@@ -35,6 +35,8 @@ public abstract class Action {
this
.
type
=
type
;
}
abstract
public
boolean
is_local_action
();
public
String
get_type
()
{
return
this
.
type
;}
public
abstract
String
get_action
();
protected
JSONObject
get_json
()
{
...
...
@@ -79,4 +81,4 @@ public abstract class Action {
return
null
;
}
}
\ No newline at end of file
}
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/PictoAction.java
View file @
c03f331d
...
...
@@ -49,6 +49,8 @@ public abstract class PictoAction extends Action {
return
null
;
}
}
public
boolean
is_local_action
()
{
return
this
.
picto
.
is_local
();}
public
JSONObject
get_json_picto
()
throws
JSONException
{
final
String
param_id_json
=
"id"
;
final
String
param_picto
=
"picto"
;
...
...
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/PictosAction.java
View file @
c03f331d
...
...
@@ -59,6 +59,9 @@ public class PictosAction extends Action {
return
null
;
}
}
public
boolean
is_local_action
()
{
return
false
;}
private
JSONObject
get_json_picto
(
Picto
picto
)
throws
JSONException
{
final
String
param_id_json
=
"id"
;
final
String
param_picto
=
"picto"
;
...
...
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/Room.java
View file @
c03f331d
...
...
@@ -54,20 +54,23 @@ public class Room {
}
public
void
emit
(
final
Action
action
)
{
String
token
=
PCBcontext
.
getRestapiWrapper
().
getToken
();
final
String
token_param
=
"token"
;
Log
.
i
(
this
.
getClass
().
getName
(),
"Action: "
+
action
.
get_type
()
+
" / Attributes emitted: "
+
action
.
get_json
().
toString
());
try
{
if
(!
action
.
is_local_action
())
{
String
token
=
PCBcontext
.
getRestapiWrapper
().
getToken
();
final
String
token_param
=
"token"
;
Log
.
i
(
this
.
getClass
().
getName
(),
"Action: "
+
action
.
get_type
()
+
" / Attributes emitted: "
+
action
.
get_json
().
toString
());
try
{
this
.
socket
.
emit
(
action
.
get_action
(),
this
.
common_data
(
action
.
get_type
(),
action
.
get_json
()).
put
(
token_param
,
token
),
new
Ack
()
{
@Override
public
void
call
(
Object
...
args
)
{
for
(
Object
arg
:
args
)
Log
.
d
(
this
.
getClass
().
getName
(),
"Ack messsage:"
+
arg
);
}
@Override
public
void
call
(
Object
...
args
)
{
for
(
Object
arg
:
args
)
Log
.
d
(
this
.
getClass
().
getName
(),
"Ack messsage:"
+
arg
);
}
});
}
catch
(
JSONException
e
)
{
}
catch
(
JSONException
e
)
{
Log
.
e
(
this
.
getClass
().
getCanonicalName
(),
e
.
getClass
().
getCanonicalName
()
+
e
.
getMessage
()
+
"--"
+
e
.
getLocalizedMessage
());
}
}
else
Log
.
i
(
this
.
getClass
().
getCanonicalName
(),
"Local Action "
+
action
.
get_action
()+
" is not emitted"
);
}
/**
...
...
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/SubscribeAction.java
View file @
c03f331d
...
...
@@ -20,12 +20,15 @@ public class SubscribeAction extends Action {
public
static
final
String
ACTION
=
"/stu/subscribe"
;
@Override
public
boolean
is_local_action
()
{
return
false
;
}
public
SubscribeAction
(
){
public
SubscribeAction
(
){
super
(
SUBSCRIBE
);
}
public
String
get_action
()
{
return
ACTION
;}
}
\ No newline at end of file
}
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/action/UnsubscribeAction.java
View file @
c03f331d
...
...
@@ -24,6 +24,10 @@ public class UnsubscribeAction extends Action {
super
(
UNSUBSCRIBE
);
}
@Override
public
boolean
is_local_action
()
{
return
false
;
}
public
String
get_action
()
{
return
ACTION
;}
public
String
get_action
()
{
return
ACTION
;}
}
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/dao/Picto.java
View file @
c03f331d
...
...
@@ -82,15 +82,7 @@ public class Picto extends Img {
* @return true if it's a local pictogram
*/
public
boolean
is_local
()
{
return
this
.
get_id
()<
0
;}
/**
*
* @return de id of the picto
*/
public
int
get_id
()
{
return
this
.
id
;}
public
void
update_id
(
int
id
)
{
this
.
id
=
id
;
}
/**
*
* @return the location of the picto
...
...
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/net/NetService.java
View file @
c03f331d
...
...
@@ -142,12 +142,6 @@ public class NetService implements Runnable {
}
public
void
notifyStatus
()
{
String
user
;
if
(
PCBcontext
.
getPcbdb
()!=
null
)
{
user
=
PCBcontext
.
getPcbdb
().
getCurrentUser
().
get_name_stu
();
if
(
PCBcontext
.
getPcbdb
().
getCurrentUser
().
is_supervisor
())
user
+=
" ("
+
PCBcontext
.
getPcbdb
().
getCurrentUser
().
get_name_sup
()
+
")"
;
}
device
.
notifyStatus
(
this
.
updated
);
}
public
void
closeNotifyStatus
(){
...
...
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/net/PictoUploader.java
View file @
c03f331d
...
...
@@ -40,8 +40,8 @@ public class PictoUploader {
this
.
picto
=
picto
;
}
private
int
uploadImg
(
Img
img
)
throws
UnsupportedEncodingException
{
int
img_id
;
private
boolean
uploadImg
(
Img
img
)
throws
UnsupportedEncodingException
{
boolean
success
;
Bitmap
bmp
=
null
;
Response
<
JsonObject
>
response
=
null
;
if
(!
img
.
get_filetype
().
equalsIgnoreCase
(
"png"
))
...
...
@@ -72,9 +72,13 @@ public class PictoUploader {
if
(
response
!=
null
&&
response
.
getHeaders
().
code
()
==
200
)
{
Log
.
i
(
this
.
getClass
().
getCanonicalName
(),
"Uploaded image result: "
+
response
.
getHeaders
()
+
":"
+
response
.
getResult
());
img_id
=
response
.
getResult
().
get
(
"id"
).
getAsInt
();
int
img_id
=
response
.
getResult
().
get
(
"id"
).
getAsInt
();
String
img_uri
=
response
.
getResult
().
get
(
"uri"
).
getAsString
();
img
.
set_url
(
img_uri
);
img
.
update_id
(
img_id
);
success
=
true
;
}
else
{
img_id
=-
1
;
success
=
false
;
Log
.
i
(
this
.
getClass
().
getCanonicalName
(),
"Uploaded image failed "
);
if
(
response
!=
null
)
Log
.
i
(
this
.
getClass
().
getCanonicalName
(),
"Uploaded image failed, headers: "
+
response
.
getHeaders
());
...
...
@@ -82,19 +86,19 @@ public class PictoUploader {
}
catch
(
InterruptedException
e
)
{
Log
.
e
(
this
.
getClass
().
getCanonicalName
(),
"Image upload error: "
+
e
.
getMessage
()+
"Code: "
+
(
response
==
null
?
-
1
:
response
.
getHeaders
().
code
()));
img_id
=-
1
;
success
=
false
;
}
catch
(
ExecutionException
e
)
{
Log
.
e
(
this
.
getClass
().
getCanonicalName
(),
"Image upload error: "
+
e
.
getMessage
()+
(
response
==
null
?
-
1
:
response
.
getHeaders
().
code
()));
img_id
=-
1
;
success
=
false
;
}
catch
(
IOException
e
)
{
Log
.
e
(
Img
.
class
.
getCanonicalName
(),
"Error when decoding "
+
img
.
file_name
());
GUITools
.
show_alert
(
PCBcontext
.
getContext
(),
R
.
string
.
imguserLoadingErrMsg
);
img_id
=-
1
;
success
=
false
;
}
// ion.dump();
return
img_id
;
return
success
;
}
...
...
@@ -186,7 +190,7 @@ public class PictoUploader {
**/
public
void
upload
(
final
Context
context
)
throws
IOException
{
final
int
local_img_id
=
this
.
picto
.
get_id
();
final
int
img_id
=
uploadImg
(
this
.
picto
);
final
boolean
imgUpload_success
=
uploadImg
(
this
.
picto
);
iPictoUploaderListener
listener
=
new
iPictoUploaderListener
()
{
int
elements_uploaded
=
0
;
...
...
@@ -199,15 +203,14 @@ public class PictoUploader {
if
(
elements_uploaded
==
2
)
{
PCBcontext
.
getPcbdb
().
deletePicto
(
local_img_id
);
PictoUploader
.
this
.
picto
.
delete_bitmap
(
PCBcontext
.
getContext
());
PictoUploader
.
this
.
picto
.
update_id
(
img_id
);
PCBcontext
.
getRoom
().
emit
(
new
VocabularyAction
(
VocabularyAction
.
ADD
,
PictoUploader
.
this
.
picto
));
GUITools
.
show_alert
(
context
,
R
.
string
.
upload_ok
,
PictoUploader
.
this
.
picto
.
get_translation
()
+
":"
+
PictoUploader
.
this
.
picto
.
get_id
()
);
GUITools
.
show_alert
(
context
,
R
.
string
.
upload_ok
,
PictoUploader
.
this
.
picto
.
get_translation
());
}
}
};
if
(
img
_id
>
0
)
{
uploadAttributes
(
img_id
,
listener
);
uploadTranslation
(
img_id
,
listener
);
if
(
img
Upload_success
)
{
uploadAttributes
(
picto
.
get_id
()
,
listener
);
uploadTranslation
(
picto
.
get_id
()
,
listener
);
}
else
{
GUITools
.
show_alert
(
context
,
R
.
string
.
upload_error
,
PictoUploader
.
this
.
picto
.
get_translation
());
...
...
android/Pictogram/commonlibrary/src/main/java/com/yottacode/pictogram/tools/Img.java
View file @
c03f331d
...
...
@@ -66,6 +66,10 @@ public class Img {
public
String
get_type
()
{
return
this
.
type
;}
public
String
get_filetype
()
{
return
Img
.
FILETYPE
;}
public
void
update_id
(
int
id
)
{
this
.
id
=
id
;
}
/**
* Load if necessary the bitmap from disk, and it is returned. IIf it is not available, return null
* @param context
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment