Social Network Analysis (SNA) Tool

Experimental ::: mod_sna
Maintained by Yu Sun
Social Network Analysis Tool can show the sociogram,density,outdegree,indegree,point centrality of the forum.
Latest release:
2 sites
5 downloads
20 fans
Current versions available: 1

===ABOUT===
Social Network Analysis Tool can show the sociogram,density,outdegree,indegree,point centrality of the forum.

===REMARKS===
The implementation of this plugin is in its early stage and it may have problems when it is installed in your Moodle. 
And you must change the max_execution_time in the php.ini.The default number is 30,please change it to 10000 or more.   

Screenshots

Screenshot #0
Screenshot #1
Screenshot #2
Screenshot #3
Screenshot #4
Screenshot #5
Screenshot #6

Contributors

Yu Sun (Lead maintainer)
Please login to view contributors details and/or to contact them

Comments RSS

Show comments
  • David Mudrák
    Tue, 1 Jul 2014, 8:52 PM
    Hi Yu. Thanks for sharing this plugin with the Moodle community.

    Let me suggest to check the $plugin->release value for future versions of the plugin as it seems to contain a typo.

    Please avoid using the closing PHP tags in your files. They are known to cause troubles when plain HTTP headers are supposed to be
    sent (such as when redirecting the browser).

    The db/upgrade.php still uses the modify_database() call and the syntax will work on MySQL only. This function was deprecated in
    Moodle 1.7 (MDL-5919) already. Let me suggest to either drop support for upgrades from 1.x or rewrite that part to use the XMLDB.
    Also, there is no point of including other db/ files (such as install.php) if they are not performing any real action.

    I noticed that you create functions in the global PHP scope without the valid frankenstyle prefix (your snalib.php is included from
    lib.php which is in turn included at almost every page request, for example). This is strongly discouraged in order to prevent
    collisions with (current and/or future) core code or some other plugin. See
    http://docs.moodle.org/dev/Coding_style#Functions_and_Methods for details. You might want to encapsulate the snalib functions into
    methods of a class to prevent these issues. Or make sure they all have sna_ prefix. You should put them into locallib.php in either
    case and include it from your scripts only when needed to avoid unnecessary load.

    The direct access to superglobals like $_GET or $_POST is stronly discouraged in Moodle code as it represents potential security
    risks. Your code is currently vulnerable against SQL injection as you perform no parameters validation prior to passing $_POST data
    into the query. Our policy does not allow to approve plugins with known security issues like this. Also, your code is currently
    written so that it relies on mysql functions without using the DML API that Moodle provides. That's not allowed without a really
    good reason.

    It is encouraged to follow Moodle’s coding style as outlined in: http://docs.moodle.org/dev/Coding_style and
    http://docs.moodle.org/dev/Coding The code checker plugin can be quite helpful in fine tuning your code and can be found at:
    https://moodle.org/plugins/view.php?plugin=local_codechecker You may wish to consider using that tool to further improve your
    plugin.

    For now, I am going to mark this plugin as needing more work until we get these issues resolved. Thanks for your patience with the
    review and approval process.
  • David Mudrák
    Thu, 3 Jul 2014, 9:00 PM
    What is xmldb_amvonetroom_upgrade() doing in your db/upgrade.php?

    Using print_r() is not what we use in Moodle for outputting strings. Also, there are quite a few hard-coded English strings in the
    code that will make it impossible to localise your module. Let me kindly suggest to convert all the UI texts into proper English
    strings displayed via get_string().

    Have you actually tried to use your plugin with DEBUG_DEVELOPER on? You would see quite a few notices here and there that would give
    you a good hint on code to be fixed.

    You code produces invalid chart image URL such as /mod/sna/chart3.php?id=2&&type=2&&sid=2 so it does not really work well.

    I'm sorry, I have to mark this as needing more work yet.
  • David Mudrák
    Mon, 7 Jul 2014, 10:10 PM
    Oh sorry, I did not notice all those mysql_* functions used in your code until now. Plugins are required to use the DML API (provided via the global $DB object). The snalib.php should really be updated. I am sorry for sending the plugin back for more fixes, but we really want to avoid upset users that are using other database systems.

    When converting your queries, please keep in mind the way how parameters are supposed to be passed to them. Expanding variables directly as in "SELECT * from $data_name where id=$id" has security related consequences and should be considered as stronly discouraged, if not prohibited.

    As already noted above, the closing ?> PHP tag at the end of file is discouraged as it does not have any benefit and may cause troubles.
  • David Mudrák
    Wed, 9 Jul 2014, 8:15 PM
    Thanks Yu for fixing the mysql issues promptly. Nice to see you are responding that well. We are definitely getting somewhere, but we're not there yet. I am still having troubles with getting your module work.

    Your code still generates wrong chart image URL as I commented above (having double && in it).

    The pChart library inclusion like include("/pChart/class/pData.class.php"); is apparently wrong as it relies on it being available in the root directory of the server. There should be __DIR__ or dirname() be involved, or maybe better $CFG->dirroot.'/mod/sna/'

    The pChart library throws quite a lot of PHP notices which breaks the binary image data it produces (e.g. Notice: Undefined index: Type in .../mod/sna/pChart/class/pSpring.class.php on line 335). Are you sure you have debugging set to DEBUG_DEVELOPER when testing this module?

    I will appreciate if you pay more attention to all these things as we want to avoid unhappy users who have certain expectations on the functionality of the plugins we publish here. Thanks for understanding. It might help if you promote your plugin in a separate channel first (such as announcing it at General plugins forum) to gather feedback from the community.
  • erika alarcon
    Sat, 1 Apr 2017, 4:44 AM
    Hi!
    The 2017030300 release is still in early stage?
    I would like to implement this great plugin knowing its level of maturity

    Erika
  • Jamie Kramer
    Tue, 12 Dec 2017, 5:56 AM
    Hi. Thank you for developing the plugin. I wanted to report a small issue. The plugin zip download for mod_sna does not seem to be correct per standards for most other plugins in the community plugin database. When I extract the mod_sna_moodle34_2017030300.zip zip file, the contents of the zip archive from the top are: ./mod_sna/sna/[plugin_code] Automation tools would expect it to extract as: ./sna/[plugin_code] There is the extra top-level container directory "mod_sna". I could be wrong, but most other plugins seem to follow this convention. Thanks!

    Jamie
  • john petroulis
    Wed, 6 Feb 2019, 7:32 PM
    Hallo, I am a researcher in the field of Online Learning Systems and I focus my research on gamified learning communities. I want to use the "Social Network Analysis (SNA) Tool" in order to evaluate the participation of learners in a Moodle forum and the interaction between them, but I have installed an old version of the Moodle platform (2.8) and I cannot install the plugin. Is there any previous version of this plugin available or is there another plugin with the same or equivalent characteristics that I could use in order to carry out my research. Thank you very much!
  • Sya Rahim
    Thu, 14 Mar 2019, 4:37 PM
    Hi...Are you updating this plugin for Moodle 3.5?
Please login to post comments